@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
36 lines (32 loc) • 861 B
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.
*/
/**
* 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 const BusinessDestinationRequestTypeEnum = {
Wire: "wire",
Cbit: "cbit"
} as const;
export type BusinessDestinationRequestTypeEnum =
typeof BusinessDestinationRequestTypeEnum[keyof typeof BusinessDestinationRequestTypeEnum];