INTERFACE
TransactionInterface
A type of transaction.
link GraphQL Schema definition
- interface TransactionInterface {
- # The ID of the entity.
- : 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 ID of an Account.
- : Int64Bit
- # The amount, in the smallest currency value (e.g. cents, pence, pesos.)
- : Int
- # The type.
- : ServiceType
- # The ID of a Service.
- : Int64Bit
- # The name of a service.
- : String
- # The quantity for this service.
- : Int
- # A human readable description.
- : String
- # A general ledger code.
- : String
- # A general ledger code description.
- : String
- # The ID of the company that this entity operates under.
- : Int64Bit
- # The ID of the user who created this transaction.
- : Int64Bit
- }