pub struct Phones {Show 17 fields
pub authorization_name: String,
pub domain: String,
pub id: 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_email: String,
pub user_name: String,
pub voice_mail: String,
}
Fields§
User’s first name.
domain: String
User’s first name.
id: String
User’s first name.
password: String
User’s first name.
proxy_server: String
User’s first name.
proxy_server_2: String
User’s first name.
proxy_server_3: String
User’s first name.
register_server: String
User’s first name.
register_server_2: String
User’s first name.
register_server_3: String
User’s first name.
registration_expire_time: i64
Account 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_email: String
User’s first name.
user_name: String
User’s first name.
voice_mail: String
User’s first name.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Phones
impl<'de> Deserialize<'de> for Phones
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 Phones
impl JsonSchema for Phones
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 moreimpl StructuralPartialEq for Phones
Auto Trait Implementations§
impl Freeze for Phones
impl RefUnwindSafe for Phones
impl Send for Phones
impl Sync for Phones
impl Unpin for Phones
impl UnwindSafe for Phones
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