pub struct ConversationCreateResponseDto {
pub id: Option<String>,
pub date_updated: Option<String>,
pub date_added: Option<String>,
pub deleted: Option<bool>,
pub contact_id: Option<String>,
pub location_id: Option<String>,
pub last_message_date: Option<String>,
pub assigned_to: Option<String>,
}conversations only.Expand description
ConversationCreateResponseDto from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier for the conversation Required by the API. (Optional here so responses that omit it still parse.)
date_updated: Option<String>Date when the conversation was last updated Required by the API. (Optional here so responses that omit it still parse.)
date_added: Option<String>Date when the conversation was created Required by the API. (Optional here so responses that omit it still parse.)
deleted: Option<bool>Flag indicating if this conversation has been deleted Required by the API. (Optional here so responses that omit it still parse.)
contact_id: Option<String>Unique identifier of the contact associated with this conversation Required by the API. (Optional here so responses that omit it still parse.)
location_id: Option<String>Unique identifier of the business location where this conversation takes place Required by the API. (Optional here so responses that omit it still parse.)
last_message_date: Option<String>Date of the last message in the conversation Required by the API. (Optional here so responses that omit it still parse.)
assigned_to: Option<String>Unique identifier of the team member assigned to this conversation
Trait Implementations§
Source§impl Clone for ConversationCreateResponseDto
impl Clone for ConversationCreateResponseDto
Source§fn clone(&self) -> ConversationCreateResponseDto
fn clone(&self) -> ConversationCreateResponseDto
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more