import { BankAccountPayload } from '../../entity/bankAccount/bankAccountPayload'; import { PaymentAccountPayload } from '../../entity/paymentAccount/paymentAccountPayload'; import { ZeniAPIResponse } from '../../responsePayload'; export interface UserFinancialAccountPayload { bank_accounts: BankAccountPayload[]; payment_accounts: PaymentAccountPayload[]; reimbursement_account_id: string | null; reimbursement_account_type: string | null; user_financial_account_id: string; user_id: string; } export type UserFinancialAccountResponse = ZeniAPIResponse;