/** * 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. */ /** * * @export * @interface StdTxWithdrawDelegationRewardValue */ export interface StdTxWithdrawDelegationRewardValue { /** * * @type {string} * @memberof StdTxWithdrawDelegationRewardValue */ delegator_address: string; /** * * @type {string} * @memberof StdTxWithdrawDelegationRewardValue */ validator_address: string; } /** * Check if a given object implements the StdTxWithdrawDelegationRewardValue interface. */ export declare function instanceOfStdTxWithdrawDelegationRewardValue(value: object): boolean; export declare function StdTxWithdrawDelegationRewardValueFromJSON(json: any): StdTxWithdrawDelegationRewardValue; export declare function StdTxWithdrawDelegationRewardValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxWithdrawDelegationRewardValue; export declare function StdTxWithdrawDelegationRewardValueToJSON(value?: StdTxWithdrawDelegationRewardValue | null): any;