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
refunds: [WalletRefundTransaction!]
bin: String
last4: String
maskedPan: String
network: CardNetwork
fundingType: CardType
issuer: CardIssuerDetails
eci: String
secure3d: Secure3dDetails
}

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

refunds ● [WalletRefundTransaction!] list object

bin ● String scalar

last4 ● String scalar

maskedPan ● String scalar

network ● CardNetwork enum

fundingType ● CardType enum

issuer ● CardIssuerDetails object

eci ● String scalar

secure3d ● Secure3dDetails 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.