AbsaEftTransaction
No description
type AbsaEftTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
nonce: String
absaPaymentId: String
absaTransactionId: String
payerStatementReference: String
payeeReference: String
stitchIntermediaryAccount: String
originalTransaction: PaymentTransaction
paymentConsentRequest: PaymentConsentRequest
interactionUrl: String
userAccountNumber: String
accounts: [AbsaEftAccount]
payerIdentifierKey: String!
payerIdentifierValue: String!
}
Fields
id
● ID!
non-null scalar
amount
● Money!
non-null scalar
state
● TransactionState!
non-null union
externalReference
● String
scalar
paymentInitiationRequest
● PaymentInitiationRequest
object
nonce
● String
scalar
absaPaymentId
● String
scalar
absaTransactionId
● String
scalar
payerStatementReference
● String
scalar
payeeReference
● String
scalar
stitchIntermediaryAccount
● String
scalar
originalTransaction
● PaymentTransaction
interface
paymentConsentRequest
● PaymentConsentRequest
object
interactionUrl
● String
scalar
userAccountNumber
● String
scalar
accounts
● [AbsaEftAccount]
list object
payerIdentifierKey
● String!
non-null scalar
payerIdentifierValue
● String!
non-null scalar
Interfaces
PaymentTransaction
interface
Node
interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)
query.