/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPixPayerResponse } from './getPixPayerResponse'; import { GetTransactionResponse } from './getTransactionResponse'; import { PixAdditionalInformation } from './pixAdditionalInformation'; /** Response object when getting a pix transaction */ export interface GetPixTransactionResponse extends GetTransactionResponse { qrCode?: string | null; qrCodeUrl?: string | null; expiresAt?: string | null; additionalInformation?: PixAdditionalInformation[] | null; endToEndId?: string | null; payer?: GetPixPayerResponse | null; /** Pix provider TID */ pixProviderTid?: string | null; } export declare const getPixTransactionResponseSchema: Schema;