@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
36 lines (35 loc) • 886 B
TypeScript
/**
* 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];