pub struct JiraSettingsInput {
pub project_mapping: Option<Vec<Box<JiraLinearMappingInput>>>,
pub projects: Option<Vec<Box<JiraProjectDataInput>>>,
pub is_jira_server: Option<bool>,
pub setup_pending: Option<bool>,
pub manual_setup: Option<bool>,
pub label: Option<String>,
pub status_names_per_issue_type: Option<Value>,
}Fields§
§project_mapping: Option<Vec<Box<JiraLinearMappingInput>>>The mapping of Jira project id => Linear team id.
projects: Option<Vec<Box<JiraProjectDataInput>>>The Jira projects for the organization.
is_jira_server: Option<bool>Whether this integration is for Jira Server or not.
setup_pending: Option<bool>Whether the user needs to provide setup information about the webhook to complete the integration setup. Only relevant for integrations that use a manual setup flow
manual_setup: Option<bool>Whether this integration is using a manual setup flow.
label: Option<String>The label of the Jira instance, for visual identification purposes only
status_names_per_issue_type: Option<Value>The status names per issue type, per project.
Trait Implementations§
Source§impl Clone for JiraSettingsInput
impl Clone for JiraSettingsInput
Source§fn clone(&self) -> JiraSettingsInput
fn clone(&self) -> JiraSettingsInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JiraSettingsInput
impl Debug for JiraSettingsInput
Source§impl Default for JiraSettingsInput
impl Default for JiraSettingsInput
Source§fn default() -> JiraSettingsInput
fn default() -> JiraSettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraSettingsInput
impl<'de> Deserialize<'de> for JiraSettingsInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JiraSettingsInput
impl RefUnwindSafe for JiraSettingsInput
impl Send for JiraSettingsInput
impl Sync for JiraSettingsInput
impl Unpin for JiraSettingsInput
impl UnwindSafe for JiraSettingsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more