pub struct CustomerStatusUpdateInput {
pub name: Option<String>,
pub color: Option<String>,
pub description: Option<String>,
pub position: Option<f64>,
pub display_name: Option<String>,
}Fields§
§name: Option<String>The name of the status.
color: Option<String>The UI color of the status as a HEX string.
description: Option<String>Description of the status.
position: Option<f64>The position of the status in the workspace’s customer flow.
display_name: Option<String>The display name of the status.
Trait Implementations§
Source§impl Clone for CustomerStatusUpdateInput
impl Clone for CustomerStatusUpdateInput
Source§fn clone(&self) -> CustomerStatusUpdateInput
fn clone(&self) -> CustomerStatusUpdateInput
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 CustomerStatusUpdateInput
impl Debug for CustomerStatusUpdateInput
Source§impl Default for CustomerStatusUpdateInput
impl Default for CustomerStatusUpdateInput
Source§fn default() -> CustomerStatusUpdateInput
fn default() -> CustomerStatusUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerStatusUpdateInput
impl<'de> Deserialize<'de> for CustomerStatusUpdateInput
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
Auto Trait Implementations§
impl Freeze for CustomerStatusUpdateInput
impl RefUnwindSafe for CustomerStatusUpdateInput
impl Send for CustomerStatusUpdateInput
impl Sync for CustomerStatusUpdateInput
impl Unpin for CustomerStatusUpdateInput
impl UnwindSafe for CustomerStatusUpdateInput
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