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