pub enum EventType {
Show 13 variants
CheckIn,
CheckOut,
CheckingIn,
CheckingOut,
EmailSent,
OwnerCreated,
OwnerEdited,
AnimalCreated,
AnimalEdited,
IncidentCreated,
IncidentEdited,
LeadCreated,
Unknown(String),
}Expand description
Gingr webhook event names normalized from provider strings while retaining unknown events.
Variants§
CheckIn
Gingr event fired when a reservation checks in.
CheckOut
Gingr event fired when a reservation checks out.
CheckingIn
Gingr in-progress check-in event.
CheckingOut
Gingr in-progress check-out event.
EmailSent
Gingr event for outbound email activity.
OwnerCreated
Gingr event for a newly created owner record.
OwnerEdited
Gingr event for changes to an owner record.
AnimalCreated
Gingr event for a newly created animal record.
AnimalEdited
Gingr event for changes to an animal record.
IncidentCreated
Gingr event for a newly created incident.
IncidentEdited
Gingr event for changes to an incident.
LeadCreated
Gingr event for a newly created lead.
Unknown(String)
Provider supplied an unrecognized value; preserve it for audit instead of failing closed.
Implementations§
Trait Implementations§
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnsafeUnpin for EventType
impl UnwindSafe for EventType
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