/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { GooglePayAuthenticationMethod } from './googlePayAuthenticationMethod.js'; import { GooglePayCard } from './googlePayCard.js'; import { GooglePayPaymentMethod } from './googlePayPaymentMethod.js'; /** Details shared by Google for the merchant to be shared with PayPal. This is required to process the transaction using the Google Pay payment method. */ export interface GooglePayDecryptedTokenData { /** A unique ID that identifies the message in case it needs to be revoked or located at a later time. */ messageId?: string; /** Date and time at which the message expires as UTC milliseconds since epoch. Integrators should reject any message that's expired. */ messageExpiration?: string; /** The type of the payment credential. Currently, only CARD is supported. */ paymentMethod: GooglePayPaymentMethod; /** The payment card used to fund a Google Pay payment. Can be a credit or debit card. */ card: GooglePayCard; /** Authentication Method which is used for the card transaction. */ authenticationMethod: GooglePayAuthenticationMethod; /** Base-64 cryptographic identifier used by card schemes to validate the token verification result. This is a conditionally required field if authentication_method is CRYPTOGRAM_3DS. */ cryptogram?: string; /** Electronic Commerce Indicator may not always be present. It is only returned for tokens on the Visa card network. This value is passed through in the payment authorization request. */ eciIndicator?: string; } export declare const googlePayDecryptedTokenDataSchema: Schema; //# sourceMappingURL=googlePayDecryptedTokenData.d.ts.map