UNPKG

@circle-fin/circle-sdk

Version:
36 lines (35 loc) 886 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Chain } from "./chain"; /** * * @export * @interface PaymentMethodBlockchain */ export interface PaymentMethodBlockchain { /** * * @type {string} * @memberof PaymentMethodBlockchain */ type: PaymentMethodBlockchainTypeEnum; /** * * @type {Chain} * @memberof PaymentMethodBlockchain */ chain: Chain; /** * * @type {string} * @memberof PaymentMethodBlockchain */ address?: string; } export declare const PaymentMethodBlockchainTypeEnum: { readonly Blockchain: "blockchain"; }; export declare type PaymentMethodBlockchainTypeEnum = typeof PaymentMethodBlockchainTypeEnum[keyof typeof PaymentMethodBlockchainTypeEnum];