/** * 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 { SwapFee } from './SwapFee'; import { SwapGasCost } from './SwapGasCost'; import { SwapStepSide } from './SwapStepSide'; /** * * @export * @interface SwapStep */ export interface SwapStep { /** * List of fee costs for this swap step * @type {Array} * @memberof SwapStep */ feeCosts?: Array; /** * * @type {SwapStepSide} * @memberof SwapStep */ from: SwapStepSide; /** * List of gas costs for this swap step * @type {Array} * @memberof SwapStep */ gasCosts?: Array; /** * Unique identifier of the swap step * @type {string} * @memberof SwapStep */ id: string; /** * * @type {SwapStepSide} * @memberof SwapStep */ to: SwapStepSide; /** * Name of the tool or protocol used for this swap step * @type {string} * @memberof SwapStep */ tool: string; /** * Type of swap step (e.g. swap, bridge, approve) * @type {string} * @memberof SwapStep */ type: string; } export declare function SwapStepFromJSON(json: any): SwapStep; export declare function SwapStepFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapStep; export declare function SwapStepToJSON(value?: SwapStep | null): any;