/** * 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 { StdTxTransferValueAmountInner } from './StdTxTransferValueAmountInner'; /** * * @export * @interface StdTxTransferValue */ export interface StdTxTransferValue { /** * * @type {Array} * @memberof StdTxTransferValue */ amount: Array; /** * * @type {string} * @memberof StdTxTransferValue */ from_address: string; /** * * @type {string} * @memberof StdTxTransferValue */ to_address: string; } /** * Check if a given object implements the StdTxTransferValue interface. */ export declare function instanceOfStdTxTransferValue(value: object): boolean; export declare function StdTxTransferValueFromJSON(json: any): StdTxTransferValue; export declare function StdTxTransferValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxTransferValue; export declare function StdTxTransferValueToJSON(value?: StdTxTransferValue | null): any;