pub struct Initiative {Show 40 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub update_reminder_frequency_in_weeks: Option<f64>,
pub update_reminder_frequency: Option<f64>,
pub frequency_resolution: Option<FrequencyResolutionType>,
pub update_reminders_day: Option<Day>,
pub update_reminders_hour: Option<f64>,
pub name: Option<String>,
pub description: Option<String>,
pub organization: Option<Box<Organization>>,
pub creator: Option<Box<User>>,
pub owner: Option<Box<User>>,
pub slug_id: Option<String>,
pub sort_order: Option<f64>,
pub color: Option<String>,
pub icon: Option<String>,
pub trashed: Option<bool>,
pub facets: Option<Box<Vec<Facet>>>,
pub target_date: Option<NaiveDate>,
pub target_date_resolution: Option<DateResolutionType>,
pub status: Option<InitiativeStatus>,
pub last_update: Option<Box<InitiativeUpdate>>,
pub health: Option<InitiativeUpdateHealthType>,
pub health_updated_at: Option<DateTime<Utc>>,
pub started_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
pub url: Option<String>,
pub projects: Option<Box<ProjectConnection>>,
pub links: Option<Box<EntityExternalLinkConnection>>,
pub integrations_settings: Option<Box<IntegrationsSettings>>,
pub history: Option<Box<InitiativeHistoryConnection>>,
pub initiative_updates: Option<Box<InitiativeUpdateConnection>>,
pub sub_initiatives: Option<Box<InitiativeConnection>>,
pub parent_initiative: Option<Box<Initiative>>,
pub parent_initiatives: Option<Box<InitiativeConnection>>,
pub content: Option<String>,
pub document_content: Option<Box<DocumentContent>>,
pub documents: Option<Box<DocumentConnection>>,
}Expand description
An initiative to group projects.
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.
update_reminder_frequency_in_weeks: Option<f64>The n-weekly frequency at which to prompt for updates. When not set, reminders are inherited from workspace.
update_reminder_frequency: Option<f64>The frequency at which to prompt for updates. When not set, reminders are inherited from workspace.
frequency_resolution: Option<FrequencyResolutionType>The resolution of the reminder frequency.
update_reminders_day: Option<Day>The day at which to prompt for updates.
update_reminders_hour: Option<f64>The hour at which to prompt for updates.
name: Option<String>The name of the initiative.
description: Option<String>The description of the initiative.
organization: Option<Box<Organization>>The organization of the initiative.
creator: Option<Box<User>>The user who created the initiative.
owner: Option<Box<User>>The user who owns the initiative.
slug_id: Option<String>The initiative’s unique URL slug.
sort_order: Option<f64>The sort order of the initiative within the organization.
color: Option<String>The initiative’s color.
icon: Option<String>The icon of the initiative.
trashed: Option<bool>A flag that indicates whether the initiative is in the trash bin.
facets: Option<Box<Vec<Facet>>>Internal Facets associated with the initiative.
target_date: Option<NaiveDate>The estimated completion date of the initiative.
target_date_resolution: Option<DateResolutionType>The resolution of the initiative’s estimated completion date.
status: Option<InitiativeStatus>The status of the initiative. One of Planned, Active, Completed
last_update: Option<Box<InitiativeUpdate>>The last initiative update posted for this initiative.
health: Option<InitiativeUpdateHealthType>The health of the initiative.
health_updated_at: Option<DateTime<Utc>>The time at which the initiative health was updated.
started_at: Option<DateTime<Utc>>The time at which the initiative was moved into active status.
completed_at: Option<DateTime<Utc>>The time at which the initiative was moved into completed status.
url: Option<String>Initiative URL.
projects: Option<Box<ProjectConnection>>Projects associated with the initiative.
links: Option<Box<EntityExternalLinkConnection>>Links associated with the initiative.
integrations_settings: Option<Box<IntegrationsSettings>>Settings for all integrations associated with that initiative.
history: Option<Box<InitiativeHistoryConnection>>History entries associated with the initiative.
initiative_updates: Option<Box<InitiativeUpdateConnection>>Initiative updates associated with the initiative.
sub_initiatives: Option<Box<InitiativeConnection>>Sub-initiatives associated with the initiative.
parent_initiative: Option<Box<Initiative>>Parent initiative associated with the initiative.
parent_initiatives: Option<Box<InitiativeConnection>>Internal Parent initiatives associated with the initiative.
content: Option<String>The initiative’s content in markdown format.
document_content: Option<Box<DocumentContent>>The content of the initiative description.
documents: Option<Box<DocumentConnection>>Documents associated with the initiative.
Trait Implementations§
Source§impl Clone for Initiative
impl Clone for Initiative
Source§fn clone(&self) -> Initiative
fn clone(&self) -> Initiative
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more