/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { SwapToken } from './SwapToken'; /** * * @export * @interface SwapFee */ export interface SwapFee { /** * Fee amount in the token's native units * @type {string} * @memberof SwapFee */ amount: string; /** * Fee amount converted to USD * @type {string} * @memberof SwapFee */ amountUSD?: string; /** * Whether this fee is already included in the swap quote * @type {boolean} * @memberof SwapFee */ included: boolean; /** * Display name describing the fee type * @type {string} * @memberof SwapFee */ name: string; /** * * @type {SwapToken} * @memberof SwapFee */ token: SwapToken; } export declare function SwapFeeFromJSON(json: any): SwapFee; export declare function SwapFeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapFee; export declare function SwapFeeToJSON(value?: SwapFee | null): any;