/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Request for creating a bank account */ export interface CreateBankAccountRequest { /** Bank account holder name */ holderName: string; /** Bank account holder type */ holderType: string; /** Bank account holder document */ holderDocument: string; /** Bank */ bank: string; /** Branch number */ branchNumber: string; /** Branch check digit */ branchCheckDigit?: string | null; /** Account number */ accountNumber: string; /** Account check digit */ accountCheckDigit: string; /** Bank account type */ type: string; /** Metadata */ metadata: Record; /** Pix key */ pixKey?: string | null; } export declare const createBankAccountRequestSchema: Schema;