pub struct CreateIssueInput {
pub team_id: String,
pub title: String,
pub description: Option<String>,
pub priority: Option<i32>,
pub assignee_id: Option<String>,
pub project_id: Option<String>,
pub state_id: Option<String>,
pub parent_id: Option<String>,
pub label_ids: Vec<String>,
}Expand description
Input for create_issue tool.
Fields§
§team_id: StringTeam ID (UUID) to create the issue in
title: StringIssue title
description: Option<String>Issue description (markdown supported)
priority: Option<i32>Priority (0=None, 1=Urgent, 2=High, 3=Normal, 4=Low)
assignee_id: Option<String>Assignee user ID (UUID)
project_id: Option<String>Project ID (UUID)
state_id: Option<String>Workflow state ID (UUID)
parent_id: Option<String>Parent issue ID (UUID) for sub-issues
label_ids: Vec<String>Label IDs (UUIDs)
Trait Implementations§
Source§impl Clone for CreateIssueInput
impl Clone for CreateIssueInput
Source§fn clone(&self) -> CreateIssueInput
fn clone(&self) -> CreateIssueInput
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 CreateIssueInput
impl Debug for CreateIssueInput
Source§impl<'de> Deserialize<'de> for CreateIssueInput
impl<'de> Deserialize<'de> for CreateIssueInput
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 CreateIssueInput
impl JsonSchema for CreateIssueInput
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 CreateIssueInput
impl RefUnwindSafe for CreateIssueInput
impl Send for CreateIssueInput
impl Sync for CreateIssueInput
impl Unpin for CreateIssueInput
impl UnsafeUnpin for CreateIssueInput
impl UnwindSafe for CreateIssueInput
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