/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { DateDTO, SelfLinkDTO } from './';
/**
 *
 * @export
 * @interface SoftwareInfoDTO
 */
export interface SoftwareInfoDTO {
    /**
     * Jira Service Desk version.
     * @type {string}
     * @memberof SoftwareInfoDTO
     */
    version?: string;
    /**
     * Jira Platform version upon which Service Desk is based.
     * @type {string}
     * @memberof SoftwareInfoDTO
     */
    platformVersion?: string;
    /**
     * Date of the current build.
     * @type {DateDTO}
     * @memberof SoftwareInfoDTO
     */
    buildDate?: DateDTO;
    /**
     * Reference of the change set included in the build.
     * @type {string}
     * @memberof SoftwareInfoDTO
     */
    buildChangeSet?: string;
    /**
     * Indicates whether the instance is licensed (true) or not (false).
     * @type {boolean}
     * @memberof SoftwareInfoDTO
     */
    isLicensedForUse?: boolean;
    /**
     * REST API URL of the instance.
     * @type {SelfLinkDTO}
     * @memberof SoftwareInfoDTO
     */
    _links?: SelfLinkDTO;
}
export declare function SoftwareInfoDTOFromJSON(json: any): SoftwareInfoDTO;
export declare function SoftwareInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoftwareInfoDTO;
export declare function SoftwareInfoDTOToJSON(value?: SoftwareInfoDTO): any;
