pub struct QuestionDetailsDTO {
pub text_question_details: Option<Value>,
pub multiple_choice_question_details: Option<MultipleChoiceQuestionDetailsDTO>,
}Available on crate feature
ad-manager only.Expand description
QuestionDetailsDTO from the GoHighLevel OpenAPI spec.
Fields§
§text_question_details: Option<Value>Text question details (empty object for text questions)
multiple_choice_question_details: Option<MultipleChoiceQuestionDetailsDTO>Multiple choice question details
Trait Implementations§
Source§impl Clone for QuestionDetailsDTO
impl Clone for QuestionDetailsDTO
Source§fn clone(&self) -> QuestionDetailsDTO
fn clone(&self) -> QuestionDetailsDTO
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 QuestionDetailsDTO
impl Debug for QuestionDetailsDTO
Source§impl Default for QuestionDetailsDTO
impl Default for QuestionDetailsDTO
Source§fn default() -> QuestionDetailsDTO
fn default() -> QuestionDetailsDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QuestionDetailsDTO
impl<'de> Deserialize<'de> for QuestionDetailsDTO
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 QuestionDetailsDTO
impl RefUnwindSafe for QuestionDetailsDTO
impl Send for QuestionDetailsDTO
impl Sync for QuestionDetailsDTO
impl Unpin for QuestionDetailsDTO
impl UnsafeUnpin for QuestionDetailsDTO
impl UnwindSafe for QuestionDetailsDTO
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