pub struct CreateUserDefinedMessageParams {
pub account_sid: String,
pub call_sid: String,
pub content: String,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method create_user_defined_message
Fields§
§account_sid: String
The SID of the Account that created User Defined Message.
call_sid: String
The SID of the Call the User Defined Message is associated with.
content: String
The User Defined Message in the form of URL-encoded JSON string.
idempotency_key: Option<String>
A unique string value to identify API call. This should be a unique string value per API call and can be a randomly generated.
Trait Implementations§
Source§impl Clone for CreateUserDefinedMessageParams
impl Clone for CreateUserDefinedMessageParams
Source§fn clone(&self) -> CreateUserDefinedMessageParams
fn clone(&self) -> CreateUserDefinedMessageParams
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 CreateUserDefinedMessageParams
impl RefUnwindSafe for CreateUserDefinedMessageParams
impl Send for CreateUserDefinedMessageParams
impl Sync for CreateUserDefinedMessageParams
impl Unpin for CreateUserDefinedMessageParams
impl UnwindSafe for CreateUserDefinedMessageParams
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