/** * 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 { StdTxMsgSwap } from './StdTxMsgSwap'; import type { TypesCosmosAminoSignDocFee } from './TypesCosmosAminoSignDocFee'; /** * * @export * @interface TypesOsmosisSignDocSwap */ export interface TypesOsmosisSignDocSwap { /** * * @type {TypesCosmosAminoSignDocFee} * @memberof TypesOsmosisSignDocSwap */ fee: TypesCosmosAminoSignDocFee; /** * * @type {Array} * @memberof TypesOsmosisSignDocSwap */ msgs: Array; /** * * @type {string} * @memberof TypesOsmosisSignDocSwap */ memo: string; /** * * @type {string} * @memberof TypesOsmosisSignDocSwap */ sequence: string; /** * * @type {string} * @memberof TypesOsmosisSignDocSwap */ chain_id: string; /** * * @type {string} * @memberof TypesOsmosisSignDocSwap */ account_number: string; } /** * Check if a given object implements the TypesOsmosisSignDocSwap interface. */ export declare function instanceOfTypesOsmosisSignDocSwap(value: object): boolean; export declare function TypesOsmosisSignDocSwapFromJSON(json: any): TypesOsmosisSignDocSwap; export declare function TypesOsmosisSignDocSwapFromJSONTyped(json: any, ignoreDiscriminator: boolean): TypesOsmosisSignDocSwap; export declare function TypesOsmosisSignDocSwapToJSON(value?: TypesOsmosisSignDocSwap | null): any;