pub struct PhoneUserResponse {
pub calling_plan: Vec<CallingPlan>,
pub email: String,
pub extension_number: i64,
pub id: String,
pub phone_numbers: Vec<PhoneUserResponseNumbers>,
pub phone_user_id: String,
pub policy: Option<Policy>,
pub site_admin: bool,
pub site_id: String,
pub status: Option<UserStatusRequestAction>,
}
Expand description
Zoom User Profile
Fields§
§calling_plan: Vec<CallingPlan>
Zoom User Profile
email: String
Zoom User Profile
extension_number: i64
Zoom User Profile
id: String
Zoom User Profile
phone_numbers: Vec<PhoneUserResponseNumbers>
Zoom User Profile
phone_user_id: String
Zoom User Profile
policy: Option<Policy>
Zoom User Profile
site_admin: bool
Zoom User Profile
site_id: String
Zoom User Profile
status: Option<UserStatusRequestAction>
Zoom User Profile
Trait Implementations§
Source§impl Clone for PhoneUserResponse
impl Clone for PhoneUserResponse
Source§fn clone(&self) -> PhoneUserResponse
fn clone(&self) -> PhoneUserResponse
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 PhoneUserResponse
impl Debug for PhoneUserResponse
Source§impl<'de> Deserialize<'de> for PhoneUserResponse
impl<'de> Deserialize<'de> for PhoneUserResponse
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
Source§impl JsonSchema for PhoneUserResponse
impl JsonSchema for PhoneUserResponse
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for PhoneUserResponse
impl PartialEq for PhoneUserResponse
Source§impl Serialize for PhoneUserResponse
impl Serialize for PhoneUserResponse
impl StructuralPartialEq for PhoneUserResponse
Auto Trait Implementations§
impl Freeze for PhoneUserResponse
impl RefUnwindSafe for PhoneUserResponse
impl Send for PhoneUserResponse
impl Sync for PhoneUserResponse
impl Unpin for PhoneUserResponse
impl UnwindSafe for PhoneUserResponse
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