pub struct CustomerUpsertInput {
pub id: Option<String>,
pub name: Option<String>,
pub domains: Option<Vec<String>>,
pub external_id: Option<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 tier_name: Option<String>,
}Fields§
§id: Option<String>§name: Option<String>§domains: Option<Vec<String>>§external_id: Option<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>§tier_name: Option<String>Trait Implementations§
Source§impl Clone for CustomerUpsertInput
impl Clone for CustomerUpsertInput
Source§fn clone(&self) -> CustomerUpsertInput
fn clone(&self) -> CustomerUpsertInput
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 CustomerUpsertInput
impl Debug for CustomerUpsertInput
Source§impl Default for CustomerUpsertInput
impl Default for CustomerUpsertInput
Source§fn default() -> CustomerUpsertInput
fn default() -> CustomerUpsertInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerUpsertInput
impl<'de> Deserialize<'de> for CustomerUpsertInput
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 CustomerUpsertInput
impl RefUnwindSafe for CustomerUpsertInput
impl Send for CustomerUpsertInput
impl Sync for CustomerUpsertInput
impl Unpin for CustomerUpsertInput
impl UnwindSafe for CustomerUpsertInput
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