/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HealthCheckResult } from './'; /** * Details about the Jira instance. * @export * @interface ServerInformation */ export interface ServerInformation { /** * The timestamp when the Jira version was built. * @type {Date} * @memberof ServerInformation */ buildDate?: Date; /** * The base URL of the Jira instance. * @type {string} * @memberof ServerInformation */ baseUrl?: string; /** * The time in Jira when this request was responded to. * @type {Date} * @memberof ServerInformation */ serverTime?: Date; /** * The version of Jira. * @type {string} * @memberof ServerInformation */ version?: string; /** * The name of the Jira instance. * @type {string} * @memberof ServerInformation */ serverTitle?: string; /** * Jira instance health check results. Deprecated and no longer returned. * @type {Array} * @memberof ServerInformation */ healthChecks?: Array; /** * The major, minor, and revision version numbers of the Jira version. * @type {Array} * @memberof ServerInformation */ versionNumbers?: Array; /** * The type of server deployment. This is always returned as *Cloud*. * @type {string} * @memberof ServerInformation */ deploymentType?: string; /** * The unique identifier of the Jira version. * @type {string} * @memberof ServerInformation */ scmInfo?: string; /** * The build number of the Jira version. * @type {number} * @memberof ServerInformation */ buildNumber?: number; } export declare function ServerInformationFromJSON(json: any): ServerInformation; export declare function ServerInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerInformation; export declare function ServerInformationToJSON(value?: ServerInformation): any;