/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class SystemInfo { /** * The unique identifier of the object */ 'id'?: string | null; /** * Name of the cluster. */ 'name'?: string | null; /** * The release version of the cluster. */ 'release_version'?: string | null; /** * The timezone of the cluster. */ 'time_zone'?: string | null; /** * The default locale of the cluster. */ 'locale'?: string | null; /** * The default date format representation of the cluster. */ 'date_format'?: string | null; /** * The API version of the cluster. */ 'api_version'?: string | null; /** * The deployment type of the cluster. */ 'type'?: string | null; /** * The deployed environment of the cluster. */ 'environment'?: string | null; /** * The license applied to the cluster. */ 'license'?: string | null; /** * The default date time format representation of the cluster. */ 'date_time_format'?: string | null; /** * The default time format representation of the cluster. */ 'time_format'?: string | null; /** * The unique identifier of system user. */ 'system_user_id'?: string | null; /** * The unique identifier of super user. */ 'super_user_id'?: string | null; /** * The unique identifier of hidden object. */ 'hidden_object_id'?: string | null; /** * The unique identifier of system group. */ 'system_group_id'?: string | null; /** * The unique identifier of tsadmin user. */ 'tsadmin_user_id'?: string | null; /** * The unique identifier of admin group. */ 'admin_group_id'?: string | null; /** * The unique identifier of all tables connection. */ 'all_tables_connection_id'?: string | null; /** * The unique identifier of ALL group. */ 'all_user_group_id'?: string | null; /** * The supported accept language by the cluster. */ 'accept_language'?: string | null; /** * The count of users of ALL group. */ 'all_user_group_member_user_count'?: number | null; /** * The version number of logical model of the cluster. */ 'logical_model_version'?: number | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "release_version", "baseName": "release_version", "type": "string", "format": "" }, { "name": "time_zone", "baseName": "time_zone", "type": "string", "format": "" }, { "name": "locale", "baseName": "locale", "type": "string", "format": "" }, { "name": "date_format", "baseName": "date_format", "type": "string", "format": "" }, { "name": "api_version", "baseName": "api_version", "type": "string", "format": "" }, { "name": "type", "baseName": "type", "type": "string", "format": "" }, { "name": "environment", "baseName": "environment", "type": "string", "format": "" }, { "name": "license", "baseName": "license", "type": "string", "format": "" }, { "name": "date_time_format", "baseName": "date_time_format", "type": "string", "format": "" }, { "name": "time_format", "baseName": "time_format", "type": "string", "format": "" }, { "name": "system_user_id", "baseName": "system_user_id", "type": "string", "format": "" }, { "name": "super_user_id", "baseName": "super_user_id", "type": "string", "format": "" }, { "name": "hidden_object_id", "baseName": "hidden_object_id", "type": "string", "format": "" }, { "name": "system_group_id", "baseName": "system_group_id", "type": "string", "format": "" }, { "name": "tsadmin_user_id", "baseName": "tsadmin_user_id", "type": "string", "format": "" }, { "name": "admin_group_id", "baseName": "admin_group_id", "type": "string", "format": "" }, { "name": "all_tables_connection_id", "baseName": "all_tables_connection_id", "type": "string", "format": "" }, { "name": "all_user_group_id", "baseName": "all_user_group_id", "type": "string", "format": "" }, { "name": "accept_language", "baseName": "accept_language", "type": "string", "format": "" }, { "name": "all_user_group_member_user_count", "baseName": "all_user_group_member_user_count", "type": "number", "format": "int32" }, { "name": "logical_model_version", "baseName": "logical_model_version", "type": "number", "format": "int32" } ]; static getAttributeTypeMap() { return SystemInfo.attributeTypeMap; } public constructor() { } }