OBJECT
Transaction
An object representing exchange of money for a product or service.
link GraphQL Schema definition
1 type Transaction { 2 3 # The amount of money that the transaction was for. 4 Money! : 5 6 # The kind of the transaction. 7 TransactionKind! : 8 9 # The status of the transaction 10 TransactionStatus! : 11 12 # Whether the transaction was done in test mode or not 13 Boolean! : 14 15 }