pub struct DeleteUserDefinedMessageSubscriptionParams {
pub account_sid: String,
pub call_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_user_defined_message_subscription
Fields§
§account_sid: String
The SID of the Account that subscribed to the User Defined Messages.
call_sid: String
The SID of the Call the User Defined Message Subscription is associated with. This refers to the Call SID that is producing the User Defined Messages.
sid: String
The SID that uniquely identifies this User Defined Message Subscription.
Trait Implementations§
Source§impl Clone for DeleteUserDefinedMessageSubscriptionParams
impl Clone for DeleteUserDefinedMessageSubscriptionParams
Source§fn clone(&self) -> DeleteUserDefinedMessageSubscriptionParams
fn clone(&self) -> DeleteUserDefinedMessageSubscriptionParams
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 DeleteUserDefinedMessageSubscriptionParams
impl RefUnwindSafe for DeleteUserDefinedMessageSubscriptionParams
impl Send for DeleteUserDefinedMessageSubscriptionParams
impl Sync for DeleteUserDefinedMessageSubscriptionParams
impl Unpin for DeleteUserDefinedMessageSubscriptionParams
impl UnwindSafe for DeleteUserDefinedMessageSubscriptionParams
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