pub struct DeleteRecordingAddOnResultPayloadParams {
pub account_sid: String,
pub reference_sid: String,
pub add_on_result_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_recording_add_on_result_payload
Fields§
§account_sid: String
The SID of the Account that created the Recording AddOnResult Payload resources to delete.
reference_sid: String
The SID of the recording to which the AddOnResult resource that contains the payloads to delete belongs.
add_on_result_sid: String
The SID of the AddOnResult to which the payloads to delete belongs.
sid: String
The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to delete.
Trait Implementations§
Source§impl Clone for DeleteRecordingAddOnResultPayloadParams
impl Clone for DeleteRecordingAddOnResultPayloadParams
Source§fn clone(&self) -> DeleteRecordingAddOnResultPayloadParams
fn clone(&self) -> DeleteRecordingAddOnResultPayloadParams
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 DeleteRecordingAddOnResultPayloadParams
impl RefUnwindSafe for DeleteRecordingAddOnResultPayloadParams
impl Send for DeleteRecordingAddOnResultPayloadParams
impl Sync for DeleteRecordingAddOnResultPayloadParams
impl Unpin for DeleteRecordingAddOnResultPayloadParams
impl UnwindSafe for DeleteRecordingAddOnResultPayloadParams
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