AbsaEftTransaction
No description
type AbsaEftTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
nonce: String
absaPaymentId: String @deprecated
absaTransactionId: String @deprecated
payerStatementReference: String
payeeReference: String
originalTransaction: PaymentTransaction
paymentConsentRequest: PaymentConsentRequest
interactionUrl: String
userAccountNumber: String @deprecated
accounts: [AbsaEftAccount] @deprecated
payerIdentifierKey: String @deprecated
payerIdentifierValue: String @deprecated
riskResult: RiskResult
}
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 deprecated scalar
DEPRECATEDNo longer supported
absaTransactionId ● String deprecated scalar
DEPRECATEDNo longer supported
payerStatementReference ● String scalar
payeeReference ● String scalar
originalTransaction ● PaymentTransaction interface
paymentConsentRequest ● PaymentConsentRequest object
interactionUrl ● String scalar
userAccountNumber ● String deprecated scalar
DEPRECATEDNo longer supported
accounts ● [AbsaEftAccount] deprecated list object
DEPRECATEDNo longer supported
payerIdentifierKey ● String deprecated scalar
DEPRECATEDNo longer supported
payerIdentifierValue ● String deprecated scalar
DEPRECATEDNo longer supported
riskResult ● RiskResult object
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.