[][src]Struct google_surveys2::SurveyQuestion

pub struct SurveyQuestion {
    pub must_pick_suggestion: Option<bool>,
    pub threshold_answers: Option<Vec<String>>,
    pub num_stars: Option<String>,
    pub low_value_label: Option<String>,
    pub video_id: Option<String>,
    pub answers: Option<Vec<String>>,
    pub has_other: Option<bool>,
    pub images: Option<Vec<SurveyQuestionImage>>,
    pub unit_of_measurement_label: Option<String>,
    pub last_answer_position_pinned: Option<bool>,
    pub open_text_suggestions: Option<Vec<String>>,
    pub high_value_label: Option<String>,
    pub question: Option<String>,
    pub sentiment_text: Option<String>,
    pub single_line_response: Option<bool>,
    pub type_: Option<String>,
    pub answer_order: Option<String>,
    pub open_text_placeholder: Option<String>,
}

Message defining the question specifications.

This type is not used in any activity, and only used as part of another schema.

Fields

must_pick_suggestion: Option<bool>

Option to force the user to pick one of the open text suggestions. This requires that suggestions are provided for this question.

threshold_answers: Option<Vec<String>>

The threshold/screener answer options, which will screen a user into the rest of the survey. These will be a subset of the answer option strings.

num_stars: Option<String>

Number of stars to use for ratings questions.

low_value_label: Option<String>

For rating questions, the text for the lower end of the scale, such as 'Worst'. For numeric questions, a string representing a floating-point that is the minimum allowed number for a response.

video_id: Option<String>

The YouTube video ID to be show in video questions.

answers: Option<Vec<String>>

Required list of answer options for a question.

has_other: Option<bool>

Option to allow open-ended text box for Single Answer and Multiple Answer question types. This can be used with SINGLE_ANSWER, SINGLE_ANSWER_WITH_IMAGE, MULTIPLE_ANSWERS, and MULTIPLE_ANSWERS_WITH_IMAGE question types.

images: Option<Vec<SurveyQuestionImage>>

no description provided

unit_of_measurement_label: Option<String>

Optional unit of measurement for display (for example: hours, people, miles).

last_answer_position_pinned: Option<bool>

Currently only support pinning an answer option to the last position.

open_text_suggestions: Option<Vec<String>>

A list of suggested answers for open text question auto-complete. This is only valid if single_line_response is true.

high_value_label: Option<String>

For rating questions, the text for the higher end of the scale, such as 'Best'. For numeric questions, a string representing a floating-point that is the maximum allowed number for a response.

question: Option<String>

Required question text shown to the respondent.

sentiment_text: Option<String>

Used by the Rating Scale with Text question type. This text goes along with the question field that is presented to the respondent, and is the actual text that the respondent is asked to rate.

single_line_response: Option<bool>

Option to allow multiple line open text responses instead of a single line response. Note that we don't show auto-complete suggestions with multiple line responses.

type_: Option<String>

Required field defining the question type. For details about configuring different type of questions, consult the question configuration guide.

answer_order: Option<String>

The randomization option for multiple choice and multi-select questions. If not specified, this option defaults to randomize.

open_text_placeholder: Option<String>

Placeholder text for an open text question.

Trait Implementations

impl Clone for SurveyQuestion[src]

impl Debug for SurveyQuestion[src]

impl Default for SurveyQuestion[src]

impl<'de> Deserialize<'de> for SurveyQuestion[src]

impl Part for SurveyQuestion[src]

impl Serialize for SurveyQuestion[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any