pub struct CreateTaskRequest {Show 29 fields
pub title: String,
pub objective: String,
pub workspace_id: Option<String>,
pub session_id: Option<String>,
pub scope: Option<String>,
pub acceptance_criteria: Option<Vec<String>>,
pub verification_commands: Option<Vec<String>>,
pub test_cases: Option<Vec<String>>,
pub dependencies: Option<Vec<String>>,
pub parallel_group: Option<String>,
pub board_id: Option<String>,
pub column_id: Option<String>,
pub position: Option<i64>,
pub priority: Option<String>,
pub labels: Option<Vec<String>>,
pub assignee: Option<String>,
pub assigned_provider: Option<String>,
pub assigned_role: Option<String>,
pub assigned_specialist_id: Option<String>,
pub assigned_specialist_name: Option<String>,
pub create_github_issue: Option<bool>,
pub repo_path: Option<String>,
pub codebase_ids: Option<Vec<String>>,
pub worktree_id: Option<Value>,
pub github_id: Option<String>,
pub github_number: Option<i64>,
pub github_url: Option<String>,
pub github_repo: Option<String>,
pub github_state: Option<String>,
}Expand description
Request to create a new task
Fields§
§title: String§objective: String§workspace_id: Option<String>§session_id: Option<String>§scope: Option<String>§acceptance_criteria: Option<Vec<String>>§verification_commands: Option<Vec<String>>§test_cases: Option<Vec<String>>§dependencies: Option<Vec<String>>§parallel_group: Option<String>§board_id: Option<String>§column_id: Option<String>§position: Option<i64>§priority: Option<String>§labels: Option<Vec<String>>§assignee: Option<String>§assigned_provider: Option<String>§assigned_role: Option<String>§assigned_specialist_id: Option<String>§assigned_specialist_name: Option<String>§create_github_issue: Option<bool>§repo_path: Option<String>§codebase_ids: Option<Vec<String>>§worktree_id: Option<Value>§github_id: Option<String>§github_number: Option<i64>§github_url: Option<String>§github_repo: Option<String>§github_state: Option<String>Trait Implementations§
Source§impl Debug for CreateTaskRequest
impl Debug for CreateTaskRequest
Source§impl<'de> Deserialize<'de> for CreateTaskRequest
impl<'de> Deserialize<'de> for CreateTaskRequest
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 CreateTaskRequest
impl RefUnwindSafe for CreateTaskRequest
impl Send for CreateTaskRequest
impl Sync for CreateTaskRequest
impl Unpin for CreateTaskRequest
impl UnsafeUnpin for CreateTaskRequest
impl UnwindSafe for CreateTaskRequest
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more