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
}

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

DEPRECATED

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

last4 ● String deprecated scalar

DEPRECATED

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

maskedPan ● String deprecated scalar

DEPRECATED

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

network ● CardNetwork deprecated enum

DEPRECATED

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

fundingType ● CardType deprecated enum

DEPRECATED

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

issuer ● CardIssuerDetails deprecated object

DEPRECATED

This field will be removed in a future release. Please use the card field 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.