/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { nullable, object, optional, Schema, string } from '../schema'; /** Payer's bank details. */ export interface GetPixBankAccountResponse { bankName?: string | null; ispb?: string | null; branchCode?: string | null; accountNumber?: string | null; } export const getPixBankAccountResponseSchema: Schema = object( { bankName: ['bank_name', optional(nullable(string()))], ispb: ['ispb', optional(nullable(string()))], branchCode: ['branch_code', optional(nullable(string()))], accountNumber: ['account_number', optional(nullable(string()))], } );