/** * 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 SwapGasCost */ export interface SwapGasCost { /** * Gas cost amount in the native token's units * @type {string} * @memberof SwapGasCost */ amount: string; /** * Gas cost amount converted to USD * @type {string} * @memberof SwapGasCost */ amountUSD?: string; /** * * @type {SwapToken} * @memberof SwapGasCost */ token: SwapToken; } export declare function SwapGasCostFromJSON(json: any): SwapGasCost; export declare function SwapGasCostFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapGasCost; export declare function SwapGasCostToJSON(value?: SwapGasCost | null): any;