Struct zoom_api::types::BillingContact
source · pub struct BillingContact {
pub address: String,
pub apt: String,
pub city: String,
pub country: String,
pub email: String,
pub first_name: String,
pub last_name: String,
pub phone_number: String,
pub state: String,
pub zip: String,
}Expand description
Billing Contact object.
Fields
address: StringBilling Contact object.
apt: StringBilling Contact object.
city: StringBilling Contact object.
country: StringBilling Contact object.
email: StringBilling Contact object.
first_name: StringBilling Contact object.
last_name: StringBilling Contact object.
phone_number: StringBilling Contact object.
state: StringBilling Contact object.
zip: StringBilling Contact object.
Trait Implementations
sourceimpl Clone for BillingContact
impl Clone for BillingContact
sourcefn clone(&self) -> BillingContact
fn clone(&self) -> BillingContact
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BillingContact
impl Debug for BillingContact
sourceimpl<'de> Deserialize<'de> for BillingContact
impl<'de> Deserialize<'de> for BillingContact
sourcefn 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
sourceimpl JsonSchema for BillingContact
impl JsonSchema for BillingContact
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<BillingContact> for BillingContact
impl PartialEq<BillingContact> for BillingContact
sourcefn eq(&self, other: &BillingContact) -> bool
fn eq(&self, other: &BillingContact) -> bool
sourceimpl Serialize for BillingContact
impl Serialize for BillingContact
impl StructuralPartialEq for BillingContact
Auto Trait Implementations
impl RefUnwindSafe for BillingContact
impl Send for BillingContact
impl Sync for BillingContact
impl Unpin for BillingContact
impl UnwindSafe for BillingContact
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more