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.
  • amount: Money!
  • # The kind of the transaction.
  • kind: TransactionKind!
  • # The status of the transaction
  • status: TransactionStatus!
  • # Whether the transaction was done in test mode or not
  • test: Boolean!
  • }