/** * 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 { ChainEnum } from './ChainEnum'; /** * * @export * @interface SwapQuoteRequestSide */ export interface SwapQuoteRequestSide { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof SwapQuoteRequestSide */ address: string; /** * Token amount in raw units. Only one side (from or to) should specify an amount. * @type {string} * @memberof SwapQuoteRequestSide */ amount?: string; /** * * @type {string} * @memberof SwapQuoteRequestSide */ chainId: string; /** * * @type {ChainEnum} * @memberof SwapQuoteRequestSide */ chainName: ChainEnum; /** * * @type {string} * @memberof SwapQuoteRequestSide */ tokenAddress: string; } export declare function SwapQuoteRequestSideFromJSON(json: any): SwapQuoteRequestSide; export declare function SwapQuoteRequestSideFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapQuoteRequestSide; export declare function SwapQuoteRequestSideToJSON(value?: SwapQuoteRequestSide | null): any;