/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CPUStat, IOStat, NetStat, RAMStat } from './'; /** * * @export * @interface Stats */ export interface Stats { /** * * @type {Array} * @memberof Stats */ cpu: Array; /** * * @type {Array} * @memberof Stats */ ram: Array; /** * * @type {{ [key: string]: Array | undefined; }} * @memberof Stats */ net: { [key: string]: Array | undefined; }; /** * * @type {Array} * @memberof Stats */ io: Array; } export declare function StatsFromJSON(json: any): Stats; export declare function StatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Stats; export declare function StatsToJSON(value?: Stats | null): any;