/** * 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 StdTxDelegateValue */ export interface StdTxDelegateValue { /** * * @type {any} * @memberof StdTxDelegateValue */ amount: any | null; /** * * @type {string} * @memberof StdTxDelegateValue */ delegator_address: string; /** * * @type {string} * @memberof StdTxDelegateValue */ validator_address: string; } /** * Check if a given object implements the StdTxDelegateValue interface. */ export declare function instanceOfStdTxDelegateValue(value: object): boolean; export declare function StdTxDelegateValueFromJSON(json: any): StdTxDelegateValue; export declare function StdTxDelegateValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxDelegateValue; export declare function StdTxDelegateValueToJSON(value?: StdTxDelegateValue | null): any;