/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Route } from './Route'; /** * * @export * @interface StdTxMsgSwapValue */ export interface StdTxMsgSwapValue { /** * * @type {Array} * @memberof StdTxMsgSwapValue */ routes: Array; /** * * @type {string} * @memberof StdTxMsgSwapValue */ sender: string; /** * * @type {any} * @memberof StdTxMsgSwapValue */ token_in: any | null; /** * * @type {string} * @memberof StdTxMsgSwapValue */ token_out_min_amount: string; } /** * Check if a given object implements the StdTxMsgSwapValue interface. */ export declare function instanceOfStdTxMsgSwapValue(value: object): boolean; export declare function StdTxMsgSwapValueFromJSON(json: any): StdTxMsgSwapValue; export declare function StdTxMsgSwapValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxMsgSwapValue; export declare function StdTxMsgSwapValueToJSON(value?: StdTxMsgSwapValue | null): any;