@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
29 lines (28 loc) • 652 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.
*/
/**
*
* @export
* @interface Source
*/
export interface Source {
/**
* Unique system generated identifier for the entity.
* @type {string}
* @memberof Source
*/
id?: string;
/**
* Type of the source.
* @type {string}
* @memberof Source
*/
type?: SourceTypeEnum;
}
export declare const SourceTypeEnum: {
readonly Card: "card";
};
export declare type SourceTypeEnum = typeof SourceTypeEnum[keyof typeof SourceTypeEnum];