OBJECT

Transaction

A user's transaction

link GraphQL Schema definition

  • type Transaction {
  • created_at: DateTime!
  • id: ID!
  • # Shows how the payment was made
  • pretty_payment_method: String!
  • pretty_total_amount: String! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # Status of a transaction: Settled | Authorized | Voided | Settling | Submitted
  • # for settlement | Success | Authorization Expired | Settlement Declined
  • status: String!
  • # Amount charge to a user for a transaction
  • total_amount: Float!
  • }