OBJECT

Transaction

An object representing exchange of money for a product or service.

link GraphQL Schema definition

1type Transaction {
2
3# The amount of money that the transaction was for.
4amount: Money!
5
6# The kind of the transaction.
7kind: TransactionKind!
8
9# The status of the transaction
10status: TransactionStatus!
11
12# Whether the transaction was done in test mode or not
13test: Boolean!
14
15}