NedbankDirectTransaction
No description
type NedbankDirectTransaction implements PaymentTransaction, Node {
  id: ID!
  amount: Money!
  state: TransactionState!
  externalReference: String
  paymentInitiationRequest: PaymentInitiationRequest
  nonce: String
  correlationId: String @deprecated
  consentId: String @deprecated
  beneficiaryStatementDescription: String @deprecated
  originalTransaction: PaymentTransaction
  paymentConsentRequest: PaymentConsentRequest
  interactionUrl: String
  authorisationUrl: String
  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
correlationId ● String deprecated scalar
DEPRECATEDNo longer supported
consentId ● String deprecated scalar
DEPRECATEDNo longer supported
beneficiaryStatementDescription ● String deprecated scalar
DEPRECATEDNo longer supported
originalTransaction ● PaymentTransaction interface
paymentConsentRequest ● PaymentConsentRequest object
interactionUrl ● String scalar
authorisationUrl ● String scalar
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.