pub enum Kind {
CheckInPrep {
reservation_id: Id,
},
CheckOutPrep {
reservation_id: Id,
},
Feeding {
pet_id: PetId,
},
MedicationAdministration {
pet_id: PetId,
},
PlaygroupAssessment {
pet_id: PetId,
},
CleaningTurnover {
reservation_id: Id,
},
DailyUpdateDraft {
reservation_id: Id,
},
DocumentReview {
pet_id: PetId,
},
IncidentFollowUp {
pet_id: PetId,
},
CustomerFollowUp {
customer_id: CustomerId,
reason: FollowUpReason,
},
}Expand description
Type of labor a staff task represents across check-in, care, cleanup, and follow-up.
Variants§
CheckInPrep
Check in prep staff role, schedule, or labor-planning signal.
CheckOutPrep
Check out prep staff role, schedule, or labor-planning signal.
Feeding
Feeding staff role, schedule, or labor-planning signal.
MedicationAdministration
Medication service that requires care instructions.
PlaygroupAssessment
Playgroup assessment staff role, schedule, or labor-planning signal.
CleaningTurnover
Cleaning turnover staff role, schedule, or labor-planning signal.
DailyUpdateDraft
Daily update draft staff role, schedule, or labor-planning signal.
DocumentReview
Document review staff role, schedule, or labor-planning signal.
IncidentFollowUp
Incident follow up staff role, schedule, or labor-planning signal.
CustomerFollowUp
Customer follow up staff role, schedule, or labor-planning signal.
Fields
customer_id: CustomerIdCustomer id fact promoted into this staff contract.
reason: FollowUpReasonBusiness reason staff should review before proceeding.