Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/agile/models/version.ts>Version

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface Version
import { type Version } from "https://deno.land/x/jira@v3.0.2/src/agile/models/version.ts";

Details about a project version.

Properties

optional
self: string

The URL of the version.

optional
id: string

The ID of the version.

optional
description: string

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

optional
name: string

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

optional
archived: boolean

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

optional
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.

optional
startDate: string

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

optional
releaseDate: string

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

optional
projectId: number

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