pub struct CustomerUpdateInput {
pub name: Option<String>,
pub domains: Option<Vec<String>>,
pub external_ids: Option<Vec<String>>,
pub slack_channel_id: Option<String>,
pub owner_id: Option<String>,
pub status_id: Option<String>,
pub revenue: Option<i64>,
pub size: Option<i64>,
pub tier_id: Option<String>,
pub logo_url: Option<String>,
pub main_source_id: Option<String>,
}Fields§
§name: Option<String>§domains: Option<Vec<String>>§external_ids: Option<Vec<String>>§slack_channel_id: Option<String>§owner_id: Option<String>§status_id: Option<String>§revenue: Option<i64>§size: Option<i64>§tier_id: Option<String>§logo_url: Option<String>§main_source_id: Option<String>Trait Implementations§
Source§impl Clone for CustomerUpdateInput
impl Clone for CustomerUpdateInput
Source§fn clone(&self) -> CustomerUpdateInput
fn clone(&self) -> CustomerUpdateInput
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 CustomerUpdateInput
impl Debug for CustomerUpdateInput
Source§impl Default for CustomerUpdateInput
impl Default for CustomerUpdateInput
Source§fn default() -> CustomerUpdateInput
fn default() -> CustomerUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerUpdateInput
impl<'de> Deserialize<'de> for CustomerUpdateInput
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 CustomerUpdateInput
impl RefUnwindSafe for CustomerUpdateInput
impl Send for CustomerUpdateInput
impl Sync for CustomerUpdateInput
impl Unpin for CustomerUpdateInput
impl UnwindSafe for CustomerUpdateInput
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