/* tslint:disable */
/* eslint-disable */
/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

/**
 *
 * @export
 * @interface WireInstructionBeneficiaryBank
 */
export interface WireInstructionBeneficiaryBank {
  /**
   * Name of the beneficiary\'s bank.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  name?: string;
  /**
   * SWIFT code of the beneficiary\'s bank account.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  swiftCode?: string;
  /**
   * ABA Routing number of the beneficiary\'s bank account.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  routingNumber?: string;
  /**
   * Account number of the beneficiary\'s bank account.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  accountNumber?: string;
  /**
   * Currency of the beneficiary\'s bank account.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  currency?: string;
  /**
   * Address of the beneficiary\'s bank.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  address?: string;
  /**
   * City of the beneficiary\'s bank.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  city?: string;
  /**
   * Postal code of the beneficiary\'s bank.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  postalCode?: string;
  /**
   * Country code of the beneficiary\'s bank. Formatted as a two-letter country code specified in ISO 3166-1 alpha-2.
   * @type {string}
   * @memberof WireInstructionBeneficiaryBank
   */
  country?: string;
}
