Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct { ID string `json:"id"` Name string `json:"name"` ParentAccountID *string `json:"parentAccountId"` EntityID *string `json:"entityId"` AssetCode string `json:"assetCode"` OrganizationID string `json:"organizationId"` LedgerID string `json:"ledgerId"` PortfolioID *string `json:"portfolioId"` ProductID *string `json:"productId"` Balance Balance `json:"balance"` Status Status `json:"status"` AllowSending *bool `json:"allowSending"` AllowReceiving *bool `json:"allowReceiving"` Alias *string `json:"alias"` Type string `json:"type"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` DeletedAt *time.Time `json:"deletedAt"` Metadata map[string]any `json:"metadata,omitempty"` }
Account is a struct designed to encapsulate response payload data.
type AccountPostgreSQLModel ¶
type AccountPostgreSQLModel struct { ID string Name string ParentAccountID *string EntityID *string AssetCode string OrganizationID string LedgerID string PortfolioID *string ProductID *string AvailableBalance *float64 OnHoldBalance *float64 BalanceScale *float64 Status string StatusDescription *string AllowSending bool AllowReceiving bool Alias *string Type string CreatedAt time.Time UpdatedAt time.Time DeletedAt sql.NullTime Metadata map[string]any }
AccountPostgreSQLModel represents the entity Account into SQL context in Database
func (*AccountPostgreSQLModel) FromEntity ¶
func (t *AccountPostgreSQLModel) FromEntity(account *Account)
FromEntity converts a request entity Account to AccountPostgreSQLModel
func (*AccountPostgreSQLModel) ToEntity ¶
func (t *AccountPostgreSQLModel) ToEntity() *Account
ToEntity converts an AccountPostgreSQLModel to a response entity Account
type Balance ¶
type Balance struct { Available *float64 `json:"available"` OnHold *float64 `json:"onHold"` Scale *float64 `json:"scale"` }
Balance structure for marshaling/unmarshalling JSON.
type CreateAccountInput ¶
type CreateAccountInput struct { AssetCode string `json:"assetCode" validate:"required,max=100"` Name string `json:"name" validate:"max=256"` Alias *string `json:"alias" validate:"max=100"` Type string `json:"type" validate:"required"` ParentAccountID *string `json:"parentAccountId" validate:"omitempty,uuid"` ProductID *string `json:"productId" validate:"omitempty,uuid"` PortfolioID *string `json:"portfolioId" validate:"omitempty,uuid"` EntityID *string `json:"entityId" validate:"omitempty,max=256"` Status Status `json:"status"` AllowSending *bool `json:"allowSending"` AllowReceiving *bool `json:"allowReceiving"` Metadata map[string]any `json:"metadata" validate:"dive,keys,keymax=100,endkeys,nonested,valuemax=2000"` }
CreateAccountInput is a struct design to encapsulate request create payload data.
type Repository ¶
type Repository interface { Create(ctx context.Context, acc *Account) (*Account, error) FindAll(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, limit, page int) ([]*Account, error) Find(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, id uuid.UUID) (*Account, error) FindWithDeleted(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, id uuid.UUID) (*Account, error) FindByAlias(ctx context.Context, organizationID, ledgerID uuid.UUID, alias string) (bool, error) ListByIDs(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, ids []uuid.UUID) ([]*Account, error) ListByAlias(ctx context.Context, organizationID, ledgerID, portfolioID uuid.UUID, alias []string) ([]*Account, error) Update(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, id uuid.UUID, acc *Account) (*Account, error) Delete(ctx context.Context, organizationID, ledgerID uuid.UUID, portfolioID *uuid.UUID, id uuid.UUID) error ListAccountsByIDs(ctx context.Context, organizationID, ledgerID uuid.UUID, ids []uuid.UUID) ([]*Account, error) ListAccountsByAlias(ctx context.Context, organizationID, ledgerID uuid.UUID, aliases []string) ([]*Account, error) UpdateAccountByID(ctx context.Context, organizationID, ledgerID uuid.UUID, id uuid.UUID, acc *Account) (*Account, error) }
Repository provides an interface for operations related to account entities.
type SearchAccountsInput ¶ added in v1.26.0
type SearchAccountsInput struct {
PortfolioID *string `json:"portfolioId" validate:"omitempty,uuid"`
}
SearchAccountsInput is a struct design to encapsulate request search payload data.
type Status ¶
type Status struct { Code string `json:"code" validate:"max=100"` Description *string `json:"description" validate:"omitempty,max=256"` }
Status structure for marshaling/unmarshalling JSON.
type UpdateAccountInput ¶
type UpdateAccountInput struct { Name string `json:"name" validate:"max=256"` Status Status `json:"status"` AllowSending *bool `json:"allowSending"` AllowReceiving *bool `json:"allowReceiving"` Alias *string `json:"alias" validate:"max=100"` ProductID *string `json:"productId" validate:"uuid"` Metadata map[string]any `json:"metadata" validate:"dive,keys,keymax=100,endkeys,nonested,valuemax=2000"` }
UpdateAccountInput is a struct design to encapsulate request update payload data.