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>The identifier in UUID v4 format.
name: Option<String>The name of the customer.
domains: Option<Vec<String>>The domains associated with this customer.
external_id: Option<String>The id of the customers in external systems.
slack_channel_id: Option<String>The ID of the Slack channel used to interact with the customer.
owner_id: Option<String>The user who owns the customer.
status_id: Option<String>The status of the customer.
revenue: Option<i64>The annual revenue generated by the customer.
size: Option<i64>The size of the customer.
tier_id: Option<String>The tier of the customer.
logo_url: Option<String>The URL of the customer’s logo.
tier_name: Option<String>The name tier of the customer. Will be created if doesn’t exist
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