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