OBJECT
Transaction
types.transaction
link GraphQL Schema definition
- type Transaction {
- # The ID of the entity.
- : Int64Bit!
- # The ID of an Account.
- : Int64Bit!
- # An ID that uniquely identifies this entity across the whole Sonar system.
- : ID!
- # The date and time this entity was created.
- : Datetime!
- # The last date and time this entity was modified.
- : Datetime!
- # The type.
- : Int!
- # A description for the transaction.
- : String
- # The date and time of the transaction.
- : Datetime
- # The balance in relation to prior transactions.
- : Int!
- # The type of transaction this is.
- : TransactionType!
- # The total of all taxes on this transaction.
- : Int!
- # A debit.
- : Debit
- # A discount.
- : Discount
- # A payment.
- : Payment
- # A customer account.
- : Account!
- # Whether or not this was successful.
- : Boolean
- }