/** * 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. */ /** * * @export * @interface StorageNodeStatus */ export interface StorageNodeStatus { /** * * @type {boolean} * @memberof StorageNodeStatus */ online: boolean; /** * * @type {{ [key: string]: string | undefined; }} * @memberof StorageNodeStatus */ report: { [key: string]: string | undefined; } | null; /** * * @type {boolean} * @memberof StorageNodeStatus */ haOnline: boolean | null; /** * * @type {string} * @memberof StorageNodeStatus */ haStatus: string | null; /** * * @type {Array} * @memberof StorageNodeStatus */ haIps: Array; } export declare function StorageNodeStatusFromJSON(json: any): StorageNodeStatus; export declare function StorageNodeStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): StorageNodeStatus; export declare function StorageNodeStatusToJSON(value?: StorageNodeStatus | null): any;