OBJECT

AgentLedgerTransaction

Agent ledger transactions

link GraphQL Schema definition

  • type AgentLedgerTransaction {
  • # Agent ledger of the transaction
  • agentLedger: AgentLedger!
  • # Amount of the transaction in cents
  • amount: Money!
  • # Contract allocation of the transaction (if present)
  • contractAllocation: ContractAllocation
  • # The reason for the transaction
  • description: String!
  • # the id of the agent ledger transaction
  • id: ID
  • # Transaction that this transaction was reversed by
  • reversedBy: AgentLedgerTransaction
  • # Transaction that this transaction reverses (if this is a reversal)
  • reverses: AgentLedgerTransaction
  • # Trading Bank Account ID
  • tradingBankAccountId: ID
  • # Date of the transaction
  • transactionDate: ISO8601DateTime!
  • transactionType: AgentLedgerTransactionTypeEnum!
  • }