ApplePayTransaction
No description
type ApplePayTransaction implements PaymentTransaction, Node {
id: ID!
amount: Money!
state: TransactionState!
externalReference: String
paymentInitiationRequest: PaymentInitiationRequest
nonce: String
originalTransaction: PaymentTransaction
paymentConsentRequest: PaymentConsentRequest
interactionUrl: String
card: Card
refunds: [WalletRefundTransaction!]
bin: String @deprecated
last4: String @deprecated
maskedPan: String @deprecated
network: CardNetwork @deprecated
fundingType: CardType @deprecated
issuer: CardIssuerDetails @deprecated
eci: String
secure3d: Secure3dDetails
retrievalReferenceNumber: 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
originalTransaction ● PaymentTransaction interface
paymentConsentRequest ● PaymentConsentRequest object
interactionUrl ● String scalar
card ● Card object
refunds ● [WalletRefundTransaction!] list object
bin ● String deprecated scalar
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
last4 ● String deprecated scalar
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
maskedPan ● String deprecated scalar
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
network ● CardNetwork deprecated enum
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
fundingType ● CardType deprecated enum
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
issuer ● CardIssuerDetails deprecated object
DEPRECATEDThis field will be removed in a future release. Please use the
cardfield instead.
eci ● String scalar
secure3d ● Secure3dDetails object
retrievalReferenceNumber ● 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.