/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * The address details for the bank, as provided during bank account creation.
 * @export
 * @interface BankAddress
 */
export interface BankAddress {
    /**
     * Name of the bank. This property is required for bank accounts outside of the US that do not support IBAN\'
     * @type {string}
     * @memberof BankAddress
     */
    bankName?: string;
    /**
     * City portion of the address. This property is required for bank accounts outside of the US.
     * @type {string}
     * @memberof BankAddress
     */
    city?: string;
    /**
     * Country portion of the address. Formatted as a two-letter country code specified in ISO 3166-1 alpha-2.
     * @type {string}
     * @memberof BankAddress
     */
    country: string;
    /**
     * Line one of the street address.
     * @type {string}
     * @memberof BankAddress
     */
    line1?: string;
    /**
     * Line two of the street address.
     * @type {string}
     * @memberof BankAddress
     */
    line2?: string;
    /**
     * State / County / Province / Region portion of the address. US and Canada use the two-letter code for the subdivision.
     * @type {string}
     * @memberof BankAddress
     */
    district?: string;
}
