pub struct InitiativeUpdateInput {Show 16 fields
pub name: Option<String>,
pub description: Option<String>,
pub owner_id: Option<String>,
pub sort_order: Option<f64>,
pub color: Option<String>,
pub icon: Option<String>,
pub target_date: Option<NaiveDate>,
pub status: Option<InitiativeStatus>,
pub target_date_resolution: Option<DateResolutionType>,
pub trashed: Option<bool>,
pub content: Option<String>,
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<i64>,
}Expand description
The properties of the initiative to update.
Fields§
§name: Option<String>The name of the initiative.
description: Option<String>The description of the initiative.
owner_id: Option<String>The owner of the initiative.
sort_order: Option<f64>The sort order of the initiative within the organization.
color: Option<String>The initiative’s color.
icon: Option<String>The initiative’s icon.
target_date: Option<NaiveDate>The estimated completion date of the initiative.
status: Option<InitiativeStatus>The initiative’s status.
target_date_resolution: Option<DateResolutionType>The resolution of the initiative’s estimated completion date.
trashed: Option<bool>Whether the initiative has been trashed.
content: Option<String>The initiative’s content in markdown format.
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 frequency resolution.
update_reminders_day: Option<Day>The day at which to prompt for updates.
update_reminders_hour: Option<i64>The hour at which to prompt for updates.
Trait Implementations§
Source§impl Clone for InitiativeUpdateInput
impl Clone for InitiativeUpdateInput
Source§fn clone(&self) -> InitiativeUpdateInput
fn clone(&self) -> InitiativeUpdateInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more