/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { OperatingSystemVersion } from './operating-system-version';
/**
 *
 * @export
 * @interface OperatingSystem
 */
export interface OperatingSystem {
    /**
     * The name of the operating system
     * @type {string}
     * @memberof OperatingSystem
     */
    code: string;
    /**
     * The formatted name of the operating system
     * @type {string}
     * @memberof OperatingSystem
     */
    name: string;
    /**
     * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
     * @type {string}
     * @memberof OperatingSystem
     */
    hint: string;
    /**
     *
     * @type {Array<OperatingSystemVersion>}
     * @memberof OperatingSystem
     */
    supported_versions: Array<OperatingSystemVersion>;
}
