@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
45 lines (40 loc) • 938 B
text/typescript
/* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
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 const PaymentMethodBlockchainTypeEnum = {
Blockchain: "blockchain"
} as const;
export type PaymentMethodBlockchainTypeEnum =
typeof PaymentMethodBlockchainTypeEnum[keyof typeof PaymentMethodBlockchainTypeEnum];