/** * 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 { StdTxDelegateValue } from './StdTxDelegateValue'; /** * * @export * @interface StdTxUnDelegate */ export interface StdTxUnDelegate { /** * * @type {StdTxDelegateValue} * @memberof StdTxUnDelegate */ value: StdTxDelegateValue; /** * * @type {string} * @memberof StdTxUnDelegate */ type: StdTxUnDelegateTypeEnum; } /** * @export */ export declare const StdTxUnDelegateTypeEnum: { readonly cosmos_sdk_MsgUndelegate: "cosmos-sdk/MsgUndelegate"; }; export type StdTxUnDelegateTypeEnum = typeof StdTxUnDelegateTypeEnum[keyof typeof StdTxUnDelegateTypeEnum]; /** * Check if a given object implements the StdTxUnDelegate interface. */ export declare function instanceOfStdTxUnDelegate(value: object): boolean; export declare function StdTxUnDelegateFromJSON(json: any): StdTxUnDelegate; export declare function StdTxUnDelegateFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxUnDelegate; export declare function StdTxUnDelegateToJSON(value?: StdTxUnDelegate | null): any;