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