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