pub struct CallReference {
pub id: Option<String>,
pub status: Option<String>,
pub external_systems: Option<Vec<ExternalSystem>>,
}Expand description
CallReference : Details of a call referencing the email address.
Fields§
§id: Option<String>Gong’s unique numeric identifier for the call (up to 20 digits).
status: Option<String>Call status
external_systems: Option<Vec<ExternalSystem>>A list of links to external systems such as CRM, Telephony System, Case Management, etc.
Implementations§
Source§impl CallReference
impl CallReference
Sourcepub fn new() -> CallReference
pub fn new() -> CallReference
Details of a call referencing the email address.
Trait Implementations§
Source§impl Clone for CallReference
impl Clone for CallReference
Source§fn clone(&self) -> CallReference
fn clone(&self) -> CallReference
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 CallReference
impl Debug for CallReference
Source§impl Default for CallReference
impl Default for CallReference
Source§fn default() -> CallReference
fn default() -> CallReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallReference
impl<'de> Deserialize<'de> for CallReference
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 CallReference
impl PartialEq for CallReference
Source§fn eq(&self, other: &CallReference) -> bool
fn eq(&self, other: &CallReference) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallReference
impl Serialize for CallReference
impl StructuralPartialEq for CallReference
Auto Trait Implementations§
impl Freeze for CallReference
impl RefUnwindSafe for CallReference
impl Send for CallReference
impl Sync for CallReference
impl Unpin for CallReference
impl UnsafeUnpin for CallReference
impl UnwindSafe for CallReference
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