package app import ( "database/sql" "code.tnxs.net/taxnexus/lib/api/ledger/ledger_models" ) // GlAccountActivityWrapper wraps the object with workflow params type GlAccountActivityWrapper struct { Obj ledger_models.GlAccount APIKey string SagaID string SagaType string } // GlAccount is a first class object type type GlAccount struct { ID string AccountID string AccountLevel float64 AccountName string AccountNumber float64 AccountSign string AccountType string CreatedByID string CreatedDate sql.NullTime Description string IsActive bool IsBankAccount bool IsSummary bool LastModifiedByID string LastModifiedDate sql.NullTime Name string ParentFK string ParentGlAccountID string Ref string Status string TenantID string }