pub enum Intent {
NewCustomerIntake,
BoardingQuote,
DaycareTrial,
GroomingAppointment,
TrainingConsult,
ExistingCustomerChange,
Unknown,
}Expand description
Domain vocabulary for intent decisions in lead workflows.
Variants§
NewCustomerIntake
New customer intake sales lead state, source, or follow-up signal.
BoardingQuote
Boarding quote sales lead state, source, or follow-up signal.
DaycareTrial
Daycare trial sales lead state, source, or follow-up signal.
GroomingAppointment
Grooming appointment sales lead state, source, or follow-up signal.
TrainingConsult
Training consult sales lead state, source, or follow-up signal.
ExistingCustomerChange
Existing customer change sales lead state, source, or follow-up signal.
Unknown
Provider role or status could not be mapped confidently.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Intent
impl<'de> Deserialize<'de> for Intent
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
impl Eq for Intent
impl StructuralPartialEq for Intent
Auto Trait Implementations§
impl Freeze for Intent
impl RefUnwindSafe for Intent
impl Send for Intent
impl Sync for Intent
impl Unpin for Intent
impl UnsafeUnpin for Intent
impl UnwindSafe for Intent
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