Transaction
An object representing a single payment.
type Transaction implements Node {
id: ID!
created: DateTime!
payment: Payment!
token: String!
kind: TransactionKind!
isSuccess: Boolean!
error: String
gatewayResponse: JSONString!
amount: Money
}
Fields
Transaction.id
● ID!
non-null scalar
Transaction.created
● DateTime!
non-null scalar
Transaction.payment
● Payment!
non-null object
Transaction.token
● String!
non-null scalar
Transaction.kind
● TransactionKind!
non-null enum
Transaction.isSuccess
● Boolean!
non-null scalar
Transaction.error
● String
scalar
Transaction.gatewayResponse
● JSONString!
non-null scalar
Transaction.amount
● Money
object
Total amount of the transaction.
Interfaces
Node
interface
An object with an ID
Member of
Payment
object
Was this page helpful?