OBJECT

AgentLedgerRecurringTransaction

Agent ledger recurring transactions

link GraphQL Schema definition

  • type AgentLedgerRecurringTransaction {
  • # Agent ledger of the recurring transaction
  • agentLedger: AgentLedger!
  • # Amount of the recurring transaction in cents
  • amount: Money!
  • # The reason for the recurring transaction
  • description: String!
  • # number of payments left until end if end type is Number of payments
  • endCount: Int
  • # end date if end type set by date
  • endDate: ISO8601DateTime
  • # type of how or when this recurring transaction will end
  • endType: EndTypeEnum
  • # frequency of the frequency type
  • frequency: Int
  • # frequency detail of the frequency type
  • frequencyDetail: Int
  • # frequency type of the recurring transaction
  • frequencyType: FrequencyTypeEnum
  • # the id of the agent ledger recurring transaction
  • id: ID
  • # date of next recurring transaction
  • nextRun: ISO8601DateTime!
  • # start date of the recurring transaction
  • startDate: ISO8601DateTime!
  • # From Bank Account for transaction
  • tradingBankAccount: TradingBankAccount
  • # CREDIT or DEBIT transaction
  • transactionType: AgentLedgerTransactionTypeEnum!
  • }