Jira.js - Jira Cloud API library
    Preparing search index...

    Interface FixVersion

    Represents a fix version in a Jira project.

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

    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.

    released: boolean

    Whether the fix version is released.

    releaseDate?: string

    The release date of the fix version, if applicable.

    self: string

    The URL of the fix version details.