UNPKG

@circle-fin/circle-sdk

Version:
34 lines (30 loc) 655 B
/* 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. */ /** * * @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 const SourceTypeEnum = { Card: "card" } as const; export type SourceTypeEnum = typeof SourceTypeEnum[keyof typeof SourceTypeEnum];