/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateGooglePayIntermediateSigningKeyRequest } from './createGooglePayIntermediateSigningKeyRequest'; /** The GooglePay Token Payment Request */ export interface CreateGooglePayRequest { /** Informação sobre a versão do token. Único valor aceito é EC_v2 */ version?: string | null; /** Dados de pagamento criptografados. Corresponde ao encryptedMessage do token Google. */ data?: string | null; /** The GooglePay intermediate signing key request */ intermediateSigningKey?: CreateGooglePayIntermediateSigningKeyRequest | null; /** Assinatura dos dados de pagamento. Verifica se a origem da mensagem é o Google. Corresponde ao signature do token Google. */ signature?: string | null; signedMessage?: string | null; merchantIdentifier?: string | null; } export declare const createGooglePayRequestSchema: Schema;