pub struct FetchIncomingPhoneNumberAssignedAddOnExtensionParams {
pub account_sid: String,
pub resource_sid: String,
pub assigned_add_on_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method fetch_incoming_phone_number_assigned_add_on_extension
Fields§
§account_sid: String
The SID of the Account that created the resource to fetch.
resource_sid: String
The SID of the Phone Number to which the Add-on is assigned.
assigned_add_on_sid: String
The SID that uniquely identifies the assigned Add-on installation.
sid: String
The Twilio-provided string that uniquely identifies the resource to fetch.
Trait Implementations§
Source§impl Clone for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl Clone for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
Source§fn clone(&self) -> FetchIncomingPhoneNumberAssignedAddOnExtensionParams
fn clone(&self) -> FetchIncomingPhoneNumberAssignedAddOnExtensionParams
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 moreAuto Trait Implementations§
impl Freeze for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl RefUnwindSafe for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl Send for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl Sync for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl Unpin for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
impl UnwindSafe for FetchIncomingPhoneNumberAssignedAddOnExtensionParams
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