pub struct CallTranscripts {
pub request_id: Option<String>,
pub records: Option<Box<Records>>,
pub call_transcripts: Option<Vec<CallTranscript>>,
}Fields§
§request_id: Option<String>A Gong request reference Id, generated for this request. Can be used for troubleshooting purposes.
records: Option<Box<Records>>§call_transcripts: Option<Vec<CallTranscript>>A list with one entry per call.
Implementations§
Source§impl CallTranscripts
impl CallTranscripts
pub fn new() -> CallTranscripts
Trait Implementations§
Source§impl Clone for CallTranscripts
impl Clone for CallTranscripts
Source§fn clone(&self) -> CallTranscripts
fn clone(&self) -> CallTranscripts
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 CallTranscripts
impl Debug for CallTranscripts
Source§impl Default for CallTranscripts
impl Default for CallTranscripts
Source§fn default() -> CallTranscripts
fn default() -> CallTranscripts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallTranscripts
impl<'de> Deserialize<'de> for CallTranscripts
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
Source§impl PartialEq for CallTranscripts
impl PartialEq for CallTranscripts
Source§fn eq(&self, other: &CallTranscripts) -> bool
fn eq(&self, other: &CallTranscripts) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallTranscripts
impl Serialize for CallTranscripts
impl StructuralPartialEq for CallTranscripts
Auto Trait Implementations§
impl Freeze for CallTranscripts
impl RefUnwindSafe for CallTranscripts
impl Send for CallTranscripts
impl Sync for CallTranscripts
impl Unpin for CallTranscripts
impl UnsafeUnpin for CallTranscripts
impl UnwindSafe for CallTranscripts
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