@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
29 lines (28 loc) • 774 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.
*/
/**
*
* @export
* @interface CryptoPaymentDestination
*/
export interface CryptoPaymentDestination {
/**
* The destination address
* @type {string}
* @memberof CryptoPaymentDestination
*/
address: string;
/**
*
* @type {string}
* @memberof CryptoPaymentDestination
*/
chain: CryptoPaymentDestinationChainEnum;
}
export declare const CryptoPaymentDestinationChainEnum: {
readonly Eth: "ETH";
};
export declare type CryptoPaymentDestinationChainEnum = typeof CryptoPaymentDestinationChainEnum[keyof typeof CryptoPaymentDestinationChainEnum];