Represents a fix version in a Jira project.

interface FixVersion {
    archived: boolean;
    description: string;
    id: string;
    name: string;
    releaseDate?: string;
    released: boolean;
    self: string;
}

Properties

archived: boolean

Whether the fix version is archived.

description: string

The description of the fix version.

id: string

The unique identifier of the fix version.

name: string

The name of the fix version.

releaseDate?: string

The release date of the fix version, if applicable.

released: boolean

Whether the fix version is released.

self: string

The URL of the fix version details.