pub struct SlackChannelNameMappingInput {Show 14 fields
pub id: Option<String>,
pub name: Option<String>,
pub is_private: Option<bool>,
pub is_shared: Option<bool>,
pub bot_added: Option<bool>,
pub teams: Option<Vec<Box<SlackAsksTeamSettingsInput>>>,
pub auto_create_on_message: Option<bool>,
pub auto_create_on_emoji: Option<bool>,
pub auto_create_on_bot_mention: Option<bool>,
pub auto_create_template_id: Option<String>,
pub post_cancellation_updates: Option<bool>,
pub post_completion_updates: Option<bool>,
pub post_accepted_from_triage_updates: Option<bool>,
pub ai_titles: Option<bool>,
}Fields§
§id: Option<String>The Slack channel ID.
name: Option<String>The Slack channel name.
is_private: Option<bool>Whether or not the Slack channel is private.
Whether or not the Slack channel is shared with an external org.
bot_added: Option<bool>Whether or not the Linear Asks bot has been added to this Slack channel.
teams: Option<Vec<Box<SlackAsksTeamSettingsInput>>>Which teams are connected to the channel and settings for those teams.
auto_create_on_message: Option<bool>Whether or not top-level messages in this channel should automatically create Asks.
auto_create_on_emoji: Option<bool>Whether or not using the :ticket: emoji in this channel should automatically create Asks.
auto_create_on_bot_mention: Option<bool>Whether or not @-mentioning the bot should automatically create an Ask with the message.
auto_create_template_id: Option<String>The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won’t use any template.
post_cancellation_updates: Option<bool>Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled.
post_completion_updates: Option<bool>Whether or not synced Slack threads should be updated with a message and emoji when their Ask is completed.
post_accepted_from_triage_updates: Option<bool>Whether or not synced Slack threads should be updated with a message when their Ask is accepted from triage.
ai_titles: Option<bool>Whether or not to use AI to generate titles for Asks created in this channel.
Trait Implementations§
Source§impl Clone for SlackChannelNameMappingInput
impl Clone for SlackChannelNameMappingInput
Source§fn clone(&self) -> SlackChannelNameMappingInput
fn clone(&self) -> SlackChannelNameMappingInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more