interface OS {
    compatibleServerTypes: string[];
    family: string;
    id: string;
    imageUrl: string;
    isBeta: boolean;
    label: string;
    name: string;
    version: string;
    xcodeVersion: string;
}

Properties

compatibleServerTypes: string[]

List of compatible server types.

family: string

The OS family to which this OS belongs, eg. 13 or 14.

id: string

Unique ID of the OS.

imageUrl: string

URL of the image.

isBeta: boolean

Describes if the OS is in beta.

label: string

OS name as it should be displayed.

name: string

OS name.

version: string

The OS version number, eg. Sonoma has version number 14.3.

xcodeVersion: string

The current xcode version for this OS.