UNPKG

@circle-fin/circle-sdk

Version:
29 lines (28 loc) 748 B
/** * 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 declare const CryptoPaymentSourceTypeEnum: { readonly Blockchain: "blockchain"; }; export declare type CryptoPaymentSourceTypeEnum = typeof CryptoPaymentSourceTypeEnum[keyof typeof CryptoPaymentSourceTypeEnum];