pub struct LeadFormContentDTO {
pub questions: Vec<LeadFormQuestionDTO>,
pub description: Option<LocalizedStringDTO>,
pub headline: LocalizedStringDTO,
pub post_submission_info: PostSubmissionInfoDTO,
pub legal_info: LegalInfoDTO,
}Available on crate feature
ad-manager only.Expand description
LeadFormContentDTO from the GoHighLevel OpenAPI spec.
Fields§
§questions: Vec<LeadFormQuestionDTO>Form questions Required by the API.
description: Option<LocalizedStringDTO>Form description
headline: LocalizedStringDTOForm headline Required by the API.
post_submission_info: PostSubmissionInfoDTOPost-submission info Required by the API.
legal_info: LegalInfoDTOLegal information Required by the API.
Trait Implementations§
Source§impl Clone for LeadFormContentDTO
impl Clone for LeadFormContentDTO
Source§fn clone(&self) -> LeadFormContentDTO
fn clone(&self) -> LeadFormContentDTO
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 LeadFormContentDTO
impl Debug for LeadFormContentDTO
Source§impl Default for LeadFormContentDTO
impl Default for LeadFormContentDTO
Source§fn default() -> LeadFormContentDTO
fn default() -> LeadFormContentDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeadFormContentDTO
impl<'de> Deserialize<'de> for LeadFormContentDTO
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 LeadFormContentDTO
impl RefUnwindSafe for LeadFormContentDTO
impl Send for LeadFormContentDTO
impl Sync for LeadFormContentDTO
impl Unpin for LeadFormContentDTO
impl UnsafeUnpin for LeadFormContentDTO
impl UnwindSafe for LeadFormContentDTO
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