/** * 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 { StdTxWithdrawDelegationRewardValue } from './StdTxWithdrawDelegationRewardValue'; /** * * @export * @interface StdTxWithdrawDelegationReward */ export interface StdTxWithdrawDelegationReward { /** * * @type {StdTxWithdrawDelegationRewardValue} * @memberof StdTxWithdrawDelegationReward */ value: StdTxWithdrawDelegationRewardValue; /** * * @type {string} * @memberof StdTxWithdrawDelegationReward */ type: StdTxWithdrawDelegationRewardTypeEnum; } /** * @export */ export declare const StdTxWithdrawDelegationRewardTypeEnum: { readonly cosmos_sdk_MsgWithdrawDelegationReward: "cosmos-sdk/MsgWithdrawDelegationReward"; }; export type StdTxWithdrawDelegationRewardTypeEnum = typeof StdTxWithdrawDelegationRewardTypeEnum[keyof typeof StdTxWithdrawDelegationRewardTypeEnum]; /** * Check if a given object implements the StdTxWithdrawDelegationReward interface. */ export declare function instanceOfStdTxWithdrawDelegationReward(value: object): boolean; export declare function StdTxWithdrawDelegationRewardFromJSON(json: any): StdTxWithdrawDelegationReward; export declare function StdTxWithdrawDelegationRewardFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxWithdrawDelegationReward; export declare function StdTxWithdrawDelegationRewardToJSON(value?: StdTxWithdrawDelegationReward | null): any;