pub struct LeadFormQuestionDTO {
pub question: LocalizedStringDTO,
pub name: String,
pub question_details: QuestionDetailsDTO,
pub predefined_field: Option<String>,
}Available on crate feature
ad-publishing only.Expand description
LeadFormQuestionDTO from the GoHighLevel OpenAPI spec.
Fields§
§question: LocalizedStringDTOQuestion text Required by the API.
name: StringQuestion field name Required by the API.
question_details: QuestionDetailsDTOQuestion type details Required by the API.
predefined_field: Option<String>Predefined field identifier
Trait Implementations§
Source§impl Clone for LeadFormQuestionDTO
impl Clone for LeadFormQuestionDTO
Source§fn clone(&self) -> LeadFormQuestionDTO
fn clone(&self) -> LeadFormQuestionDTO
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 LeadFormQuestionDTO
impl Debug for LeadFormQuestionDTO
Source§impl Default for LeadFormQuestionDTO
impl Default for LeadFormQuestionDTO
Source§fn default() -> LeadFormQuestionDTO
fn default() -> LeadFormQuestionDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeadFormQuestionDTO
impl<'de> Deserialize<'de> for LeadFormQuestionDTO
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 LeadFormQuestionDTO
impl RefUnwindSafe for LeadFormQuestionDTO
impl Send for LeadFormQuestionDTO
impl Sync for LeadFormQuestionDTO
impl Unpin for LeadFormQuestionDTO
impl UnsafeUnpin for LeadFormQuestionDTO
impl UnwindSafe for LeadFormQuestionDTO
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