pub struct Version {Show 17 fields
pub expand: Option<String>,
pub _self: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub archived: Option<bool>,
pub released: Option<bool>,
pub start_date: Option<String>,
pub release_date: Option<String>,
pub overdue: Option<bool>,
pub user_start_date: Option<String>,
pub user_release_date: Option<String>,
pub project: Option<String>,
pub project_id: Option<i64>,
pub move_unfixed_issues_to: Option<String>,
pub operations: Option<Vec<SimpleLink>>,
pub issues_status_for_fix_version: Option<VersionIssuesStatus>,
}
Expand description
Version : Details about a project version.
Fields§
§expand: Option<String>
Use expand to include additional information about version in the response. This parameter accepts a comma-separated list. Expand options include: * operations
Returns the list of operations available for this version. * issuesstatus
Returns the count of issues in this version for each of the status categories to do, in progress, done, and unmapped. The unmapped property contains a count of issues with a status other than to do, in progress, and done. Optional for create and update.
_self: Option<String>
The URL of the version.
id: Option<String>
The ID of the version.
description: Option<String>
The description of the version. Optional when creating or updating a version.
name: Option<String>
The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters.
archived: Option<bool>
Indicates that the version is archived. Optional when creating or updating a version.
released: Option<bool>
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.
start_date: Option<String>
The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.
release_date: Option<String>
The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.
overdue: Option<bool>
Indicates that the version is overdue.
user_start_date: Option<String>
The date on which work on this version is expected to start, expressed in the instance’s Day/Month/Year Format date format.
user_release_date: Option<String>
The date on which work on this version is expected to finish, expressed in the instance’s Day/Month/Year Format date format.
project: Option<String>
Deprecated. Use projectId
.
project_id: Option<i64>
The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.
move_unfixed_issues_to: Option<String>
The URL of the self link to the version to which all unfixed issues are moved when a version is released. Not applicable when creating a version. Optional when updating a version.
operations: Option<Vec<SimpleLink>>
If the expand option operations
is used, returns the list of operations available for this version.
issues_status_for_fix_version: Option<VersionIssuesStatus>
If the expand option issuesstatus
is used, returns the count of issues in this version for each of the status categories to do, in progress, done, and unmapped. The unmapped property contains a count of issues with a status other than to do, in progress, and done.