pub struct UserTypingBody {
pub location_id: String,
pub is_typing: String,
pub visitor_id: String,
pub conversation_id: String,
}Available on crate feature
conversations only.Expand description
UserTypingBody from the GoHighLevel OpenAPI spec.
Fields§
§location_id: StringLocation Id Required by the API.
is_typing: StringTyping status Required by the API.
visitor_id: StringvisitorId is the Unique ID assigned to each Live chat visitor. visitorId will be added soon in GET Contact API Required by the API.
conversation_id: StringConversation Id Required by the API.
Trait Implementations§
Source§impl Clone for UserTypingBody
impl Clone for UserTypingBody
Source§fn clone(&self) -> UserTypingBody
fn clone(&self) -> UserTypingBody
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 UserTypingBody
impl Debug for UserTypingBody
Source§impl Default for UserTypingBody
impl Default for UserTypingBody
Source§fn default() -> UserTypingBody
fn default() -> UserTypingBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserTypingBody
impl<'de> Deserialize<'de> for UserTypingBody
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 UserTypingBody
impl RefUnwindSafe for UserTypingBody
impl Send for UserTypingBody
impl Sync for UserTypingBody
impl Unpin for UserTypingBody
impl UnsafeUnpin for UserTypingBody
impl UnwindSafe for UserTypingBody
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