/** * 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 Fee */ export interface Fee { /** * Magnitude of the fee amount, in units of the currency, with a `.`. * @type {string} * @memberof Fee */ amount: string; /** * Currency code for the amount. * @type {string} * @memberof Fee */ currency: FeeCurrencyEnum; /** * Category of the fee. * @type {string} * @memberof Fee */ type: FeeTypeEnum; } export declare const FeeCurrencyEnum: { readonly Usd: "USD"; }; export declare type FeeCurrencyEnum = typeof FeeCurrencyEnum[keyof typeof FeeCurrencyEnum]; export declare const FeeTypeEnum: { readonly Network: "network"; }; export declare type FeeTypeEnum = typeof FeeTypeEnum[keyof typeof FeeTypeEnum];