pub struct KanbanColumnAutomation {
pub enabled: bool,
pub steps: Option<Vec<KanbanAutomationStep>>,
pub provider_id: Option<String>,
pub role: Option<String>,
pub specialist_id: Option<String>,
pub specialist_name: Option<String>,
pub transition_type: Option<String>,
pub required_artifacts: Option<Vec<String>>,
pub auto_advance_on_success: Option<bool>,
}Fields§
§enabled: boolWhether automation is enabled for this column
steps: Option<Vec<KanbanAutomationStep>>Ordered automation steps to run within the same lane
provider_id: Option<String>Provider ID to use for the automation
role: Option<String>Role for the agent (CRAFTER, ROUTA, GATE, DEVELOPER)
specialist_id: Option<String>Specialist ID to use
specialist_name: Option<String>Specialist name (for display)
transition_type: Option<String>When to trigger: entry, exit, or both
required_artifacts: Option<Vec<String>>Required artifacts before advancing
auto_advance_on_success: Option<bool>Automatically advance card on session success
Implementations§
Source§impl KanbanColumnAutomation
impl KanbanColumnAutomation
pub fn primary_step(&self) -> Option<KanbanAutomationStep>
Trait Implementations§
Source§impl Clone for KanbanColumnAutomation
impl Clone for KanbanColumnAutomation
Source§fn clone(&self) -> KanbanColumnAutomation
fn clone(&self) -> KanbanColumnAutomation
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 KanbanColumnAutomation
impl Debug for KanbanColumnAutomation
Source§impl Default for KanbanColumnAutomation
impl Default for KanbanColumnAutomation
Source§fn default() -> KanbanColumnAutomation
fn default() -> KanbanColumnAutomation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KanbanColumnAutomation
impl<'de> Deserialize<'de> for KanbanColumnAutomation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<KanbanColumnAutomation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<KanbanColumnAutomation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KanbanColumnAutomation
impl PartialEq for KanbanColumnAutomation
Source§impl Serialize for KanbanColumnAutomation
impl Serialize for KanbanColumnAutomation
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for KanbanColumnAutomation
Auto Trait Implementations§
impl Freeze for KanbanColumnAutomation
impl RefUnwindSafe for KanbanColumnAutomation
impl Send for KanbanColumnAutomation
impl Sync for KanbanColumnAutomation
impl Unpin for KanbanColumnAutomation
impl UnsafeUnpin for KanbanColumnAutomation
impl UnwindSafe for KanbanColumnAutomation
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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