pub enum ServerMessageAssistantRequestPhoneNumber {
CreateByoPhoneNumberDto(CreateByoPhoneNumberDto),
CreateTwilioPhoneNumberDto(CreateTwilioPhoneNumberDto),
CreateVonagePhoneNumberDto(CreateVonagePhoneNumberDto),
CreateVapiPhoneNumberDto(CreateVapiPhoneNumberDto),
}Expand description
ServerMessageAssistantRequestPhoneNumber : This is the phone number associated with the call. This matches one of the following: - call.phoneNumber, - call.phoneNumberId.
This is the phone number associated with the call. This matches one of the following: - call.phoneNumber, - call.phoneNumberId.
Variants§
CreateByoPhoneNumberDto(CreateByoPhoneNumberDto)
CreateTwilioPhoneNumberDto(CreateTwilioPhoneNumberDto)
CreateVonagePhoneNumberDto(CreateVonagePhoneNumberDto)
CreateVapiPhoneNumberDto(CreateVapiPhoneNumberDto)
Trait Implementations§
Source§impl Clone for ServerMessageAssistantRequestPhoneNumber
impl Clone for ServerMessageAssistantRequestPhoneNumber
Source§fn clone(&self) -> ServerMessageAssistantRequestPhoneNumber
fn clone(&self) -> ServerMessageAssistantRequestPhoneNumber
Returns a copy 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 ComposeSchema for ServerMessageAssistantRequestPhoneNumber
impl ComposeSchema for ServerMessageAssistantRequestPhoneNumber
Source§impl<'de> Deserialize<'de> for ServerMessageAssistantRequestPhoneNumber
impl<'de> Deserialize<'de> for ServerMessageAssistantRequestPhoneNumber
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 PartialEq for ServerMessageAssistantRequestPhoneNumber
impl PartialEq for ServerMessageAssistantRequestPhoneNumber
Source§fn eq(&self, other: &ServerMessageAssistantRequestPhoneNumber) -> bool
fn eq(&self, other: &ServerMessageAssistantRequestPhoneNumber) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerMessageAssistantRequestPhoneNumber
Auto Trait Implementations§
impl Freeze for ServerMessageAssistantRequestPhoneNumber
impl RefUnwindSafe for ServerMessageAssistantRequestPhoneNumber
impl Send for ServerMessageAssistantRequestPhoneNumber
impl Sync for ServerMessageAssistantRequestPhoneNumber
impl Unpin for ServerMessageAssistantRequestPhoneNumber
impl UnwindSafe for ServerMessageAssistantRequestPhoneNumber
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