UNPKG

@circle-fin/circle-sdk

Version:
32 lines (31 loc) 823 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The payment source. * @export * @interface SourceResponse */ export interface SourceResponse { /** * Unique system generated identifier for the entity. * @type {string} * @memberof SourceResponse */ id?: string; /** * Type of the source. * @type {string} * @memberof SourceResponse */ type?: SourceResponseTypeEnum; } export declare const SourceResponseTypeEnum: { readonly Card: "card"; readonly Ach: "ach"; readonly Wire: "wire"; readonly Sepa: "sepa"; }; export declare type SourceResponseTypeEnum = typeof SourceResponseTypeEnum[keyof typeof SourceResponseTypeEnum];