/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetRecipientResponse } from './getRecipientResponse'; export interface GetBankAccountResponse { /** Id */ id?: string | null; /** Holder name */ holderName?: string | null; /** Holder type */ holderType?: string | null; /** Bank */ bank?: string | null; /** Branch number */ branchNumber?: string | null; /** Branch check digit */ branchCheckDigit?: string | null; /** Account number */ accountNumber?: string | null; /** Account check digit */ accountCheckDigit?: string | null; /** Bank account type */ type?: string | null; /** Bank account status */ status?: string | null; /** Creation date */ createdAt?: string | null; /** Last update date */ updatedAt?: string | null; /** Deletion date */ deletedAt?: string | null; /** Recipient */ recipient?: GetRecipientResponse | null; /** Metadata */ metadata?: Record | null; /** Pix Key */ pixKey?: string | null; } export declare const getBankAccountResponseSchema: Schema;