pub enum FollowUpReason {
MissingVaccineProof,
DepositNotPaid,
ReservationChangeRequested,
LeadNeedsResponse,
PostStayCheckIn,
ReviewResponseNeeded,
}Expand description
Follow-up reason that tells managers why the daily brief surfaced a pet, customer, or revenue task.
Variants§
MissingVaccineProof
Vaccine proof is missing and must be collected or verified before care eligibility is trusted.
DepositNotPaid
Deposit is unpaid, requiring billing review or customer follow-up before relying on the booking.
ReservationChangeRequested
Customer requested a reservation change that staff must confirm before schedule or capacity changes.
LeadNeedsResponse
Sales/intake lead is waiting for response and may affect conversion or capacity planning.
PostStayCheckIn
Post-stay check-in is due for customer experience or service recovery.
ReviewResponseNeeded
Reputation response is needed but must follow review and approval boundaries.
Trait Implementations§
Source§impl Clone for FollowUpReason
impl Clone for FollowUpReason
Source§fn clone(&self) -> FollowUpReason
fn clone(&self) -> FollowUpReason
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 FollowUpReason
impl Debug for FollowUpReason
Source§impl<'de> Deserialize<'de> for FollowUpReason
impl<'de> Deserialize<'de> for FollowUpReason
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 FollowUpReason
impl PartialEq for FollowUpReason
Source§impl Serialize for FollowUpReason
impl Serialize for FollowUpReason
impl Eq for FollowUpReason
impl StructuralPartialEq for FollowUpReason
Auto Trait Implementations§
impl Freeze for FollowUpReason
impl RefUnwindSafe for FollowUpReason
impl Send for FollowUpReason
impl Sync for FollowUpReason
impl Unpin for FollowUpReason
impl UnsafeUnpin for FollowUpReason
impl UnwindSafe for FollowUpReason
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