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