/** * 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 StdTxDepositValue */ export interface StdTxDepositValue { /** * * @type {any} * @memberof StdTxDepositValue */ coins: any | null; /** * * @type {string} * @memberof StdTxDepositValue */ memo: string; /** * * @type {string} * @memberof StdTxDepositValue */ signer: string; } /** * Check if a given object implements the StdTxDepositValue interface. */ export declare function instanceOfStdTxDepositValue(value: object): boolean; export declare function StdTxDepositValueFromJSON(json: any): StdTxDepositValue; export declare function StdTxDepositValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxDepositValue; export declare function StdTxDepositValueToJSON(value?: StdTxDepositValue | null): any;