import type * as Square from "../index"; /** * Represents the details of a tender with `type` `BANK_ACCOUNT`. * * See [BankAccountPaymentDetails](entity:BankAccountPaymentDetails) * for more exposed details of a bank account payment. */ export interface TenderBankAccountDetails { /** * The bank account payment's current state. * * See [TenderBankAccountPaymentDetailsStatus](entity:TenderBankAccountDetailsStatus) for possible values. * See [TenderBankAccountDetailsStatus](#type-tenderbankaccountdetailsstatus) for possible values */ status?: Square.TenderBankAccountDetailsStatus; }