@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
41 lines (38 loc) • 1.03 kB
text/typescript
/* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import { WireInstructionBeneficiary } from "./wire-instruction-beneficiary";
// May contain unused imports in some cases
// @ts-ignore
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;
}