pub struct ProjectMilestone {Show 16 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub document_content: Option<Box<DocumentContent>>,
pub target_date: Option<NaiveDate>,
pub project: Option<Box<Project>>,
pub progress_history: Option<Value>,
pub current_progress: Option<Value>,
pub sort_order: Option<f64>,
pub description: Option<String>,
pub status: Option<ProjectMilestoneStatus>,
pub progress: Option<f64>,
pub description_state: Option<String>,
pub issues: Option<Box<IssueConnection>>,
}Expand description
A milestone for a project.
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.
name: Option<String>The name of the project milestone.
document_content: Option<Box<DocumentContent>>The content of the project milestone description.
target_date: Option<NaiveDate>The planned completion date of the milestone.
project: Option<Box<Project>>The project of the milestone.
progress_history: Option<Value>Internal The progress history of the project milestone.
current_progress: Option<Value>Internal The current progress of the project milestone.
sort_order: Option<f64>The order of the milestone in relation to other milestones within a project.
description: Option<String>The project milestone’s description in markdown format.
status: Option<ProjectMilestoneStatus>The status of the project milestone.
progress: Option<f64>The progress % of the project milestone.
description_state: Option<String>Internal The project milestone’s description as YJS state.
issues: Option<Box<IssueConnection>>Issues associated with the project milestone.
Trait Implementations§
Source§impl Clone for ProjectMilestone
impl Clone for ProjectMilestone
Source§fn clone(&self) -> ProjectMilestone
fn clone(&self) -> ProjectMilestone
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more