Skip to main content

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
metadata: Json
}

Fields

ApplePayTransaction.id ● ID! non-null scalar

ApplePayTransaction.amount ● Money! non-null scalar

ApplePayTransaction.state ● TransactionState! non-null union

ApplePayTransaction.externalReference ● String scalar

ApplePayTransaction.paymentInitiationRequest ● PaymentInitiationRequest object

ApplePayTransaction.nonce ● String scalar

ApplePayTransaction.originalTransaction ● PaymentTransaction interface

ApplePayTransaction.paymentConsentRequest ● PaymentConsentRequest object

ApplePayTransaction.interactionUrl ● String scalar

ApplePayTransaction.card ● Card object

ApplePayTransaction.refunds ● [WalletRefundTransaction!] list object

ApplePayTransaction.bin ● String deprecated scalar

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.last4 ● String deprecated scalar

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.maskedPan ● String deprecated scalar

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.network ● CardNetwork deprecated enum

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.fundingType ● CardType deprecated enum

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.issuer ● CardIssuerDetails deprecated object

⚠️ DEPRECATED

This field will be removed in a future release. Please use the card field instead.

ApplePayTransaction.eci ● String scalar

ApplePayTransaction.secure3d ● Secure3dDetails object

ApplePayTransaction.retrievalReferenceNumber ● String scalar

ApplePayTransaction.riskResult ● RiskResult object

ApplePayTransaction.metadata ● Json 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.