pub enum AgentRecommendedAction {
DraftConfirmationForStaffApproval,
DraftMissingInfoRequest,
DraftReviewPacket,
}Expand description
Classifies agent recommended action values that drive the booking-readiness workflow.
Variants§
DraftConfirmationForStaffApproval
Routes booking triage work flagged as draft confirmation for staff approval to the right queue, review gate, or agent packet.
DraftMissingInfoRequest
Routes booking triage work flagged as draft missing info request to the right queue, review gate, or agent packet.
DraftReviewPacket
Routes booking triage work flagged as draft review packet to the right queue, review gate, or agent packet.
Trait Implementations§
Source§impl Clone for AgentRecommendedAction
impl Clone for AgentRecommendedAction
Source§fn clone(&self) -> AgentRecommendedAction
fn clone(&self) -> AgentRecommendedAction
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 AgentRecommendedAction
impl Debug for AgentRecommendedAction
Source§impl<'de> Deserialize<'de> for AgentRecommendedAction
impl<'de> Deserialize<'de> for AgentRecommendedAction
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 PartialEq for AgentRecommendedAction
impl PartialEq for AgentRecommendedAction
Source§impl Serialize for AgentRecommendedAction
impl Serialize for AgentRecommendedAction
impl Copy for AgentRecommendedAction
impl Eq for AgentRecommendedAction
impl StructuralPartialEq for AgentRecommendedAction
Auto Trait Implementations§
impl Freeze for AgentRecommendedAction
impl RefUnwindSafe for AgentRecommendedAction
impl Send for AgentRecommendedAction
impl Sync for AgentRecommendedAction
impl Unpin for AgentRecommendedAction
impl UnsafeUnpin for AgentRecommendedAction
impl UnwindSafe for AgentRecommendedAction
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