pub struct Recording {
pub stereo_url: Option<String>,
pub video_url: Option<String>,
pub video_recording_start_delay_seconds: Option<f64>,
pub mono: Option<Mono>,
}
Fields§
§stereo_url: Option<String>
This is the stereo recording url for the call. To enable, set assistant.artifactPlan.recordingEnabled
.
video_url: Option<String>
This is the video recording url for the call. To enable, set assistant.artifactPlan.videoRecordingEnabled
.
video_recording_start_delay_seconds: Option<f64>
This is video recording start delay in ms. To enable, set assistant.artifactPlan.videoRecordingEnabled
. This can be used to align the playback of the recording with artifact.messages timestamps.
mono: Option<Mono>
This is the mono recording url for the call. To enable, set assistant.artifactPlan.recordingEnabled
.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Recording
impl<'de> Deserialize<'de> for Recording
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
impl StructuralPartialEq for Recording
Auto Trait Implementations§
impl Freeze for Recording
impl RefUnwindSafe for Recording
impl Send for Recording
impl Sync for Recording
impl Unpin for Recording
impl UnwindSafe for Recording
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