Details about a project version.

interface Version {
    archived?: boolean;
    description?: string;
    id?: string;
    name?: string;
    projectId?: number;
    releaseDate?: string;
    released?: boolean;
    self?: string;
    startDate?: string;
}

Properties

archived?: boolean

Indicates that the version is archived. Optional when creating or updating a version.

description?: string

The description of the version. Optional when creating or updating a version.

id?: string

The ID of the version.

name?: string

The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters.

projectId?: number

The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.

releaseDate?: string

The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.

released?: boolean

Indicates that the version is released. If the version is released a request to release again is ignored. Not applicable when creating a version. Optional when updating a version.

self?: string

The URL of the version.

startDate?: string

The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.