/**
 * 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];
