pub struct UpdateIssueInput {
pub issue: String,
pub title: Option<String>,
pub description: Option<String>,
pub priority: Option<i32>,
pub assignee_id: Option<String>,
pub state_id: Option<String>,
pub project_id: Option<String>,
pub parent_id: Option<String>,
pub label_ids: Option<Vec<String>>,
pub added_label_ids: Option<Vec<String>>,
pub removed_label_ids: Option<Vec<String>>,
pub due_date: Option<String>,
}Expand description
Input for updating an existing Linear issue
Fields§
§issue: StringIssue identifier (UUID, key like ENG-245, or Linear URL)
title: Option<String>New title for the issue
description: Option<String>New description (markdown supported)
priority: Option<i32>Priority: 0=None, 1=Urgent, 2=High, 3=Medium, 4=Low
assignee_id: Option<String>Assignee user ID (UUID)
state_id: Option<String>Workflow state ID (UUID)
project_id: Option<String>Project ID (UUID)
parent_id: Option<String>Parent issue ID (UUID) for sub-issues
label_ids: Option<Vec<String>>Replace all labels with these IDs (overrides existing)
added_label_ids: Option<Vec<String>>Add these label IDs (incremental)
removed_label_ids: Option<Vec<String>>Remove these label IDs (incremental)
due_date: Option<String>Due date in ISO 8601 format (YYYY-MM-DD)
Trait Implementations§
Source§impl Clone for UpdateIssueInput
impl Clone for UpdateIssueInput
Source§fn clone(&self) -> UpdateIssueInput
fn clone(&self) -> UpdateIssueInput
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 UpdateIssueInput
impl Debug for UpdateIssueInput
Source§impl<'de> Deserialize<'de> for UpdateIssueInput
impl<'de> Deserialize<'de> for UpdateIssueInput
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
Source§impl JsonSchema for UpdateIssueInput
impl JsonSchema for UpdateIssueInput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for UpdateIssueInput
impl RefUnwindSafe for UpdateIssueInput
impl Send for UpdateIssueInput
impl Sync for UpdateIssueInput
impl Unpin for UpdateIssueInput
impl UnsafeUnpin for UpdateIssueInput
impl UnwindSafe for UpdateIssueInput
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