pub struct CustomQuestionFieldDTO {
pub custom_question_text: String,
pub single_choice_answers: Vec<String>,
}Available on crate feature
ad-publishing only.Expand description
CustomQuestionFieldDTO from the GoHighLevel OpenAPI spec.
Fields§
§custom_question_text: StringCustom question text shown to the user Required by the API.
single_choice_answers: Vec<String>Answer choices for the custom question Required by the API.
Trait Implementations§
Source§impl Clone for CustomQuestionFieldDTO
impl Clone for CustomQuestionFieldDTO
Source§fn clone(&self) -> CustomQuestionFieldDTO
fn clone(&self) -> CustomQuestionFieldDTO
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 CustomQuestionFieldDTO
impl Debug for CustomQuestionFieldDTO
Source§impl Default for CustomQuestionFieldDTO
impl Default for CustomQuestionFieldDTO
Source§fn default() -> CustomQuestionFieldDTO
fn default() -> CustomQuestionFieldDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomQuestionFieldDTO
impl<'de> Deserialize<'de> for CustomQuestionFieldDTO
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 CustomQuestionFieldDTO
impl RefUnwindSafe for CustomQuestionFieldDTO
impl Send for CustomQuestionFieldDTO
impl Sync for CustomQuestionFieldDTO
impl Unpin for CustomQuestionFieldDTO
impl UnsafeUnpin for CustomQuestionFieldDTO
impl UnwindSafe for CustomQuestionFieldDTO
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