OBJECT
Transaction
An object representing exchange of money for a product or service.
link GraphQL Schema definition
- type Transaction {
- # The amount of money that the transaction was for.
- : Money!
- # The kind of the transaction.
- : TransactionKind!
- # The status of the transaction
- : TransactionStatus!
- # Whether the transaction was done in test mode or not
- : Boolean!
- }