pub struct CreateSipCredentialParams {
pub account_sid: String,
pub credential_list_sid: String,
pub username: String,
pub password: String,
}
Expand description
struct for passing parameters to the method create_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 to include the created credential.
username: String
The username that will be passed when authenticating SIP requests. The username should be sent in response to Twilio’s challenge of the initial INVITE. It can be up to 32 characters long.
password: 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 CreateSipCredentialParams
impl Clone for CreateSipCredentialParams
Source§fn clone(&self) -> CreateSipCredentialParams
fn clone(&self) -> CreateSipCredentialParams
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 CreateSipCredentialParams
impl RefUnwindSafe for CreateSipCredentialParams
impl Send for CreateSipCredentialParams
impl Sync for CreateSipCredentialParams
impl Unpin for CreateSipCredentialParams
impl UnwindSafe for CreateSipCredentialParams
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