/** * 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 { SwapStatusRequestChain } from './SwapStatusRequestChain'; /** * * @export * @interface SwapStatusRequest */ export interface SwapStatusRequest { /** * * @type {SwapStatusRequestChain} * @memberof SwapStatusRequest */ from?: SwapStatusRequestChain; /** * * @type {SwapStatusRequestChain} * @memberof SwapStatusRequest */ to?: SwapStatusRequestChain; /** * The on-chain transaction hash. * @type {string} * @memberof SwapStatusRequest */ txHash: string; } export declare function SwapStatusRequestFromJSON(json: any): SwapStatusRequest; export declare function SwapStatusRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapStatusRequest; export declare function SwapStatusRequestToJSON(value?: SwapStatusRequest | null): any;