@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
42 lines (41 loc) • 1.23 kB
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 PaymentIntentFees
*/
export interface PaymentIntentFees {
/**
*
* @type {string}
* @memberof PaymentIntentFees
*/
type: PaymentIntentFeesTypeEnum;
/**
* Magnitude of the amount, in units of the currency, with a `.`.
* @type {string}
* @memberof PaymentIntentFees
*/
amount: string;
/**
* Currency code.
* @type {string}
* @memberof PaymentIntentFees
*/
currency: PaymentIntentFeesCurrencyEnum;
}
export declare const PaymentIntentFeesTypeEnum: {
readonly BlockchainLeaseFee: "blockchainLeaseFee";
readonly TotalPaymentFees: "totalPaymentFees";
};
export declare type PaymentIntentFeesTypeEnum = typeof PaymentIntentFeesTypeEnum[keyof typeof PaymentIntentFeesTypeEnum];
export declare const PaymentIntentFeesCurrencyEnum: {
readonly Usd: "USD";
readonly Btc: "BTC";
readonly Eth: "ETH";
};
export declare type PaymentIntentFeesCurrencyEnum = typeof PaymentIntentFeesCurrencyEnum[keyof typeof PaymentIntentFeesCurrencyEnum];