pub struct CreateConversationFormDTO {
pub location_id: String,
pub name: String,
pub text: String,
pub questions: Vec<WelcomeMessageQuestion>,
}Available on crate feature
ad-publishing only.Expand description
CreateConversationFormDTO from the GoHighLevel OpenAPI spec.
Fields§
§location_id: StringLocation identifier Required by the API.
name: StringConversation form name Required by the API.
text: StringWelcome message text Required by the API.
questions: Vec<WelcomeMessageQuestion>Quick-reply questions shown in the welcome message of the conversation form Required by the API.
Trait Implementations§
Source§impl Clone for CreateConversationFormDTO
impl Clone for CreateConversationFormDTO
Source§fn clone(&self) -> CreateConversationFormDTO
fn clone(&self) -> CreateConversationFormDTO
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 CreateConversationFormDTO
impl Debug for CreateConversationFormDTO
Source§impl Default for CreateConversationFormDTO
impl Default for CreateConversationFormDTO
Source§fn default() -> CreateConversationFormDTO
fn default() -> CreateConversationFormDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateConversationFormDTO
impl<'de> Deserialize<'de> for CreateConversationFormDTO
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 CreateConversationFormDTO
impl RefUnwindSafe for CreateConversationFormDTO
impl Send for CreateConversationFormDTO
impl Sync for CreateConversationFormDTO
impl Unpin for CreateConversationFormDTO
impl UnsafeUnpin for CreateConversationFormDTO
impl UnwindSafe for CreateConversationFormDTO
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