@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
33 lines (32 loc) • 902 B
TypeScript
/**
* 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;
}