/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { WireInstructionBeneficiary } from "./wire-instruction-beneficiary";
import { WireInstructionBeneficiaryBank } from "./wire-instruction-beneficiary-bank";
/**
 *
 * @export
 * @interface WireInstruction
 */
export interface WireInstruction {
    /**
     * Circle tracking reference that needs to be set in the wire reference field.
     * @type {string}
     * @memberof WireInstruction
     */
    trackingRef?: string;
    /**
     *
     * @type {WireInstructionBeneficiary}
     * @memberof WireInstruction
     */
    beneficiary?: WireInstructionBeneficiary;
    /**
     *
     * @type {WireInstructionBeneficiaryBank}
     * @memberof WireInstruction
     */
    beneficiaryBank?: WireInstructionBeneficiaryBank;
}
