pub enum Role {
Customer,
Pet,
Location,
ReservationType,
Invoice,
Payment,
Service,
Staff,
Unknown,
}Expand description
Kinds of related records that may be attached to source-data lineage.
Variants§
Customer
Customer record participating in the workflow.
Pet
Pet record participating in the workflow.
Location
Resort location record participating in the workflow.
ReservationType
Gingr reservation-type identifier used for service reconciliation.
Invoice
Gingr invoice identifier tied to reservation/payment reconciliation.
Payment
Gingr payment identifier tied to deposit or checkout reconciliation.
Service
Gingr service identifier used when mapping provider service types.
Staff
Staff provider id retained for labor-source reconciliation.
Unknown
Related record role is unknown, so reconciliation should not assume the link’s business meaning.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Role
impl<'de> Deserialize<'de> for Role
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 Copy for Role
impl Eq for Role
impl StructuralPartialEq for Role
Auto Trait Implementations§
impl Freeze for Role
impl RefUnwindSafe for Role
impl Send for Role
impl Sync for Role
impl Unpin for Role
impl UnsafeUnpin for Role
impl UnwindSafe for Role
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