pub struct Cycle {Show 30 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub number: Option<f64>,
pub name: Option<String>,
pub description: Option<String>,
pub starts_at: Option<DateTime<Utc>>,
pub ends_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
pub auto_archived_at: Option<DateTime<Utc>>,
pub issue_count_history: Option<Vec<f64>>,
pub completed_issue_count_history: Option<Vec<f64>>,
pub scope_history: Option<Vec<f64>>,
pub completed_scope_history: Option<Vec<f64>>,
pub in_progress_scope_history: Option<Vec<f64>>,
pub team: Option<Box<Team>>,
pub progress_history: Option<Value>,
pub current_progress: Option<Value>,
pub inherited_from: Option<Box<Cycle>>,
pub is_active: Option<bool>,
pub is_future: Option<bool>,
pub is_past: Option<bool>,
pub issues: Option<Box<IssueConnection>>,
pub uncompleted_issues_upon_close: Option<Box<IssueConnection>>,
pub progress: Option<f64>,
pub is_next: Option<bool>,
pub is_previous: Option<bool>,
pub documents: Option<Box<DocumentConnection>>,
pub links: Option<Box<EntityExternalLinkConnection>>,
}Expand description
A set of issues to be resolved in a specified amount of time.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
number: Option<f64>The number of the cycle.
name: Option<String>The custom name of the cycle.
description: Option<String>The cycle’s description.
starts_at: Option<DateTime<Utc>>The start time of the cycle.
ends_at: Option<DateTime<Utc>>The end time of the cycle.
completed_at: Option<DateTime<Utc>>The completion time of the cycle. If null, the cycle hasn’t been completed.
auto_archived_at: Option<DateTime<Utc>>The time at which the cycle was automatically archived by the auto pruning process.
issue_count_history: Option<Vec<f64>>The total number of issues in the cycle after each day.
completed_issue_count_history: Option<Vec<f64>>The number of completed issues in the cycle after each day.
scope_history: Option<Vec<f64>>The total number of estimation points after each day.
completed_scope_history: Option<Vec<f64>>The number of completed estimation points after each day.
in_progress_scope_history: Option<Vec<f64>>The number of in progress estimation points after each day.
team: Option<Box<Team>>The team that the cycle is associated with.
progress_history: Option<Value>Internal The progress history of the cycle.
current_progress: Option<Value>Internal The current progress of the cycle.
inherited_from: Option<Box<Cycle>>The cycle inherited from.
is_active: Option<bool>Whether the cycle is currently active.
is_future: Option<bool>Whether the cycle is in the future.
is_past: Option<bool>Whether the cycle is in the past.
issues: Option<Box<IssueConnection>>Issues associated with the cycle.
uncompleted_issues_upon_close: Option<Box<IssueConnection>>Issues that weren’t completed when the cycle was closed.
progress: Option<f64>The overall progress of the cycle. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points.
is_next: Option<bool>Whether the cycle is the next cycle for the team.
is_previous: Option<bool>Whether the cycle is the previous cycle for the team.
documents: Option<Box<DocumentConnection>>Internal Documents associated with the cycle.
links: Option<Box<EntityExternalLinkConnection>>Internal Links associated with the cycle.