/** * 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 SwapQuoteResponseSide */ export interface SwapQuoteResponseSide { /** * Token contract address * @type {string} * @memberof SwapQuoteResponseSide */ address: string; /** * Token amount in the smallest unit * @type {string} * @memberof SwapQuoteResponseSide */ amount: string; /** * Minimum amount accounting for slippage (to side only) * @type {string} * @memberof SwapQuoteResponseSide */ amountMin?: string; /** * Token amount converted to USD * @type {string} * @memberof SwapQuoteResponseSide */ amountUSD?: string; /** * * @type {SwapToken} * @memberof SwapQuoteResponseSide */ token: SwapToken; } export declare function SwapQuoteResponseSideFromJSON(json: any): SwapQuoteResponseSide; export declare function SwapQuoteResponseSideFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapQuoteResponseSide; export declare function SwapQuoteResponseSideToJSON(value?: SwapQuoteResponseSide | null): any;