/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { BusinessAccountPayoutDestinationType } from "./business-account-payout-destination-type";
/**
 * The destination bank account.
 * @export
 * @interface BankDestination
 */
export interface BankDestination {
    /**
     *
     * @type {BusinessAccountPayoutDestinationType}
     * @memberof BankDestination
     */
    type: BusinessAccountPayoutDestinationType;
    /**
     * Unique system generated identifier for the entity.
     * @type {string}
     * @memberof BankDestination
     */
    id: string;
    /**
     * Bank name plus last four digits of the bank account number or IBAN.
     * @type {string}
     * @memberof BankDestination
     */
    name?: string;
}
