Skip to main content

GooglePayTransaction

No description

type GooglePayTransaction 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

GooglePayTransaction.id ● ID! non-null scalar

GooglePayTransaction.amount ● Money! non-null scalar

GooglePayTransaction.state ● TransactionState! non-null union

GooglePayTransaction.externalReference ● String scalar

GooglePayTransaction.paymentInitiationRequest ● PaymentInitiationRequest object

GooglePayTransaction.nonce ● String scalar

GooglePayTransaction.originalTransaction ● PaymentTransaction interface

GooglePayTransaction.paymentConsentRequest ● PaymentConsentRequest object

GooglePayTransaction.interactionUrl ● String scalar

GooglePayTransaction.card ● Card object

GooglePayTransaction.refunds ● [WalletRefundTransaction!] list object

GooglePayTransaction.bin ● String deprecated scalar

⚠️ DEPRECATED

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

GooglePayTransaction.last4 ● String deprecated scalar

⚠️ DEPRECATED

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

GooglePayTransaction.maskedPan ● String deprecated scalar

⚠️ DEPRECATED

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

GooglePayTransaction.network ● CardNetwork deprecated enum

⚠️ DEPRECATED

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

GooglePayTransaction.fundingType ● CardType deprecated enum

⚠️ DEPRECATED

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

GooglePayTransaction.issuer ● CardIssuerDetails deprecated object

⚠️ DEPRECATED

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

GooglePayTransaction.eci ● String scalar

GooglePayTransaction.secure3d ● Secure3dDetails object

GooglePayTransaction.retrievalReferenceNumber ● String scalar

GooglePayTransaction.riskResult ● RiskResult object

GooglePayTransaction.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.