pub struct UpdateSipCredentialParams {
pub account_sid: String,
pub credential_list_sid: String,
pub sid: String,
pub password: Option<String>,
}
Expand description
struct for passing parameters to the method update_sip_credential
Fields§
§account_sid: String
The unique id of the Account that is responsible for this resource.
credential_list_sid: String
The unique id that identifies the credential list that includes this credential.
sid: String
The unique id that identifies the resource to update.
password: Option<String>
The password that the username will use when authenticating SIP requests. The password must be a minimum of 12 characters, contain at least 1 digit, and have mixed case. (eg IWasAtSignal2018
)
Trait Implementations§
Source§impl Clone for UpdateSipCredentialParams
impl Clone for UpdateSipCredentialParams
Source§fn clone(&self) -> UpdateSipCredentialParams
fn clone(&self) -> UpdateSipCredentialParams
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 moreAuto Trait Implementations§
impl Freeze for UpdateSipCredentialParams
impl RefUnwindSafe for UpdateSipCredentialParams
impl Send for UpdateSipCredentialParams
impl Sync for UpdateSipCredentialParams
impl Unpin for UpdateSipCredentialParams
impl UnwindSafe for UpdateSipCredentialParams
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