@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
30 lines (29 loc) • 867 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.
*/
/**
* The destination bank account.
* @export
* @interface BusinessDestinationRequest
*/
export interface BusinessDestinationRequest {
/**
*
* @type {string}
* @memberof BusinessDestinationRequest
*/
type: BusinessDestinationRequestTypeEnum;
/**
* Unique system generated identifier for the entity.
* @type {string}
* @memberof BusinessDestinationRequest
*/
id: string;
}
export declare const BusinessDestinationRequestTypeEnum: {
readonly Wire: "wire";
readonly Cbit: "cbit";
};
export declare type BusinessDestinationRequestTypeEnum = typeof BusinessDestinationRequestTypeEnum[keyof typeof BusinessDestinationRequestTypeEnum];