pub struct MessageMeta {
pub call_duration: Option<String>,
pub call_status: Option<String>,
pub email: Option<Value>,
}Available on crate feature
conversations only.Expand description
MessageMeta from the GoHighLevel OpenAPI spec.
Fields§
§call_duration: Option<String>Call duration in seconds
call_status: Option<String>Call status - can be pending, completed, answered, busy, no-answer, failed, canceled, or
voicemail
Allowed values: pending, completed, answered, busy, no-answer, failed,
canceled, voicemail.
email: Option<Value>meta will contain email, for message type 3 (email). messageIds is list of all email message ids under the message thread
Trait Implementations§
Source§impl Clone for MessageMeta
impl Clone for MessageMeta
Source§fn clone(&self) -> MessageMeta
fn clone(&self) -> MessageMeta
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 MessageMeta
impl Debug for MessageMeta
Source§impl Default for MessageMeta
impl Default for MessageMeta
Source§fn default() -> MessageMeta
fn default() -> MessageMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageMeta
impl<'de> Deserialize<'de> for MessageMeta
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 MessageMeta
impl RefUnwindSafe for MessageMeta
impl Send for MessageMeta
impl Sync for MessageMeta
impl Unpin for MessageMeta
impl UnsafeUnpin for MessageMeta
impl UnwindSafe for MessageMeta
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