UNPKG

@circle-fin/circle-sdk

Version:
35 lines (31 loc) 753 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 CryptoPaymentSource */ export interface CryptoPaymentSource { /** * The source address * @type {string} * @memberof CryptoPaymentSource */ address: string; /** * The source type * @type {string} * @memberof CryptoPaymentSource */ type: CryptoPaymentSourceTypeEnum; } export const CryptoPaymentSourceTypeEnum = { Blockchain: "blockchain" } as const; export type CryptoPaymentSourceTypeEnum = typeof CryptoPaymentSourceTypeEnum[keyof typeof CryptoPaymentSourceTypeEnum];