/** * 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 { ElementsVersion, GlobalAlert, License, SAMLProviderMini } from './'; /** * * @export * @interface SystemInfoEndpointResponse */ export interface SystemInfoEndpointResponse { /** * * @type {License} * @memberof SystemInfoEndpointResponse */ license: License; /** * * @type {number} * @memberof SystemInfoEndpointResponse */ clientApiVersion: number; /** * * @type {string} * @memberof SystemInfoEndpointResponse */ ntHostname: string; /** * * @type {boolean} * @memberof SystemInfoEndpointResponse */ offersNtpSync: boolean; /** * * @type {boolean} * @memberof SystemInfoEndpointResponse */ offersFileSearch: boolean; /** * * @type {string} * @memberof SystemInfoEndpointResponse */ language: string; /** * * @type {Array} * @memberof SystemInfoEndpointResponse */ readonly samlProviders: Array; /** * * @type {ElementsVersion} * @memberof SystemInfoEndpointResponse */ version: ElementsVersion; /** * * @type {Array} * @memberof SystemInfoEndpointResponse */ globalAlerts: Array; } export declare function SystemInfoEndpointResponseFromJSON(json: any): SystemInfoEndpointResponse; export declare function SystemInfoEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemInfoEndpointResponse; export declare function SystemInfoEndpointResponseToJSON(value?: SystemInfoEndpointResponse | null): any;