pub struct GetCallRecordingResponse {
pub status: Option<String>,
pub callrecording: Option<String>,
pub datetime: Option<NaiveDateTime>,
pub destination: Option<u64>,
pub type: Option<String>,
pub subaccount: Option<u64>,
pub duration: Option<String>,
pub base64file: Option<String>,
}Expand description
Response body for Client::get_call_recording (wire method getCallRecording).
Fields§
§status: Option<String>§callrecording: Option<String>§datetime: Option<NaiveDateTime>§destination: Option<u64>§type: Option<String>§subaccount: Option<u64>§duration: Option<String>§base64file: Option<String>Trait Implementations§
Source§impl Clone for GetCallRecordingResponse
impl Clone for GetCallRecordingResponse
Source§fn clone(&self) -> GetCallRecordingResponse
fn clone(&self) -> GetCallRecordingResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetCallRecordingResponse
impl Debug for GetCallRecordingResponse
Source§impl Default for GetCallRecordingResponse
impl Default for GetCallRecordingResponse
Source§fn default() -> GetCallRecordingResponse
fn default() -> GetCallRecordingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCallRecordingResponse
impl<'de> Deserialize<'de> for GetCallRecordingResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetCallRecordingResponse
impl RefUnwindSafe for GetCallRecordingResponse
impl Send for GetCallRecordingResponse
impl Sync for GetCallRecordingResponse
impl Unpin for GetCallRecordingResponse
impl UnsafeUnpin for GetCallRecordingResponse
impl UnwindSafe for GetCallRecordingResponse
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