Struct zoom_api::types::UpdateSipPhoneRequest
source · pub struct UpdateSipPhoneRequest {Show 15 fields
pub authorization_name: String,
pub domain: String,
pub password: String,
pub proxy_server: String,
pub proxy_server_2: String,
pub proxy_server_3: String,
pub register_server: String,
pub register_server_2: String,
pub register_server_3: String,
pub registration_expire_time: i64,
pub transport_protocol: Option<TransportProtocol>,
pub transport_protocol_2: Option<TransportProtocol>,
pub transport_protocol_3: Option<TransportProtocol>,
pub user_name: String,
pub voice_mail: String,
}Fields
User’s first name.
domain: StringUser’s first name.
password: StringUser’s first name.
proxy_server: StringUser’s first name.
proxy_server_2: StringUser’s first name.
proxy_server_3: StringUser’s first name.
register_server: StringUser’s first name.
register_server_2: StringUser’s first name.
register_server_3: StringUser’s first name.
registration_expire_time: i64Account seats.
transport_protocol: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
transport_protocol_2: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
transport_protocol_3: Option<TransportProtocol>Protocols supported by the SIP provider.
The value must be either UDP, TCP, TLS, AUTO.
user_name: StringUser’s first name.
voice_mail: StringUser’s first name.
Trait Implementations
sourceimpl Clone for UpdateSipPhoneRequest
impl Clone for UpdateSipPhoneRequest
sourcefn clone(&self) -> UpdateSipPhoneRequest
fn clone(&self) -> UpdateSipPhoneRequest
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 UpdateSipPhoneRequest
impl Debug for UpdateSipPhoneRequest
sourceimpl<'de> Deserialize<'de> for UpdateSipPhoneRequest
impl<'de> Deserialize<'de> for UpdateSipPhoneRequest
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 UpdateSipPhoneRequest
impl JsonSchema for UpdateSipPhoneRequest
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<UpdateSipPhoneRequest> for UpdateSipPhoneRequest
impl PartialEq<UpdateSipPhoneRequest> for UpdateSipPhoneRequest
sourcefn eq(&self, other: &UpdateSipPhoneRequest) -> bool
fn eq(&self, other: &UpdateSipPhoneRequest) -> bool
sourceimpl Serialize for UpdateSipPhoneRequest
impl Serialize for UpdateSipPhoneRequest
impl StructuralPartialEq for UpdateSipPhoneRequest
Auto Trait Implementations
impl RefUnwindSafe for UpdateSipPhoneRequest
impl Send for UpdateSipPhoneRequest
impl Sync for UpdateSipPhoneRequest
impl Unpin for UpdateSipPhoneRequest
impl UnwindSafe for UpdateSipPhoneRequest
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