/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPixBankAccountResponse } from './getPixBankAccountResponse'; /** Pix payer data. */ export interface GetPixPayerResponse { name?: string | null; document?: string | null; documentType?: string | null; bankAccount?: GetPixBankAccountResponse | null; } export declare const getPixPayerResponseSchema: Schema;