pub enum BlockedAction {
SuggestCheckedOutStatus,
SendCustomerMessage,
MutateProviderOrPmsRecord,
MoveRefundDiscountOrPayment,
}Expand description
Actions the agent must never perform without a human/operator system of record.
Variants§
SuggestCheckedOutStatus
Blocks agents from suggest checked out status until staff or the system of record performs the action.
SendCustomerMessage
Blocks agents from send customer message until staff or the system of record performs the action.
MutateProviderOrPmsRecord
Blocks agents from mutate provider or pms record until staff or the system of record performs the action.
MoveRefundDiscountOrPayment
Blocks agents from move refund discount or payment until staff or the system of record performs the action.
Trait Implementations§
Source§impl Clone for BlockedAction
impl Clone for BlockedAction
Source§fn clone(&self) -> BlockedAction
fn clone(&self) -> BlockedAction
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 BlockedAction
impl Debug for BlockedAction
Source§impl<'de> Deserialize<'de> for BlockedAction
impl<'de> Deserialize<'de> for BlockedAction
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 Hash for BlockedAction
impl Hash for BlockedAction
Source§impl Ord for BlockedAction
impl Ord for BlockedAction
Source§fn cmp(&self, other: &BlockedAction) -> Ordering
fn cmp(&self, other: &BlockedAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BlockedAction
impl PartialEq for BlockedAction
Source§impl PartialOrd for BlockedAction
impl PartialOrd for BlockedAction
Source§impl Serialize for BlockedAction
impl Serialize for BlockedAction
impl Copy for BlockedAction
impl Eq for BlockedAction
impl StructuralPartialEq for BlockedAction
Auto Trait Implementations§
impl Freeze for BlockedAction
impl RefUnwindSafe for BlockedAction
impl Send for BlockedAction
impl Sync for BlockedAction
impl Unpin for BlockedAction
impl UnsafeUnpin for BlockedAction
impl UnwindSafe for BlockedAction
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