/** * 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 SwapStatusRequestChain */ export interface SwapStatusRequestChain { /** * Chain ID. Speeds up the lookup when provided. * @type {string} * @memberof SwapStatusRequestChain */ chainId?: string; /** * * @type {ChainEnum} * @memberof SwapStatusRequestChain */ chainName?: ChainEnum; } export declare function SwapStatusRequestChainFromJSON(json: any): SwapStatusRequestChain; export declare function SwapStatusRequestChainFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapStatusRequestChain; export declare function SwapStatusRequestChainToJSON(value?: SwapStatusRequestChain | null): any;