[][src]Struct google_surveys2::SurveyAudience

pub struct SurveyAudience {
    pub languages: Option<Vec<String>>,
    pub country_subdivision: Option<String>,
    pub country: Option<String>,
    pub gender: Option<String>,
    pub ages: Option<Vec<String>>,
    pub population_source: Option<String>,
}

Specifications for the target audience of a survey run through the API.

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

Fields

languages: Option<Vec<String>>

Language code that surveys should be targeted to. For instance, 'en-US'. Surveys may target bilingual users by specifying a list of language codes (for example, 'de' and 'en-US'). In that case, all languages will be used for targeting users but the survey content (which is displayed) must match the first language listed. Accepts standard BCP47 language codes. See specification.

country_subdivision: Option<String>

Country subdivision (states/provinces/etc) that surveys should be targeted to. For all countries except GB, ISO-3166-2 subdivision code is required (eg. 'US-OH' for Ohio, United States). For GB, NUTS 1 statistical region codes for the United Kingdom is required (eg. 'UK-UKC' for North East England).

country: Option<String>

Required country code that surveys should be targeted to. Accepts standard ISO 3166-1 2 character language codes. For instance, 'US' for the United States, and 'GB' for the United Kingdom.

gender: Option<String>

Optional gender to target.

ages: Option<Vec<String>>

Optional list of age buckets to target. Supported age buckets are: ['18-24', '25-34', '35-44', '45-54', '55-64', '65+']

population_source: Option<String>

Online population source where the respondents are sampled from.

Trait Implementations

impl Clone for SurveyAudience[src]

impl Debug for SurveyAudience[src]

impl Default for SurveyAudience[src]

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

impl Part for SurveyAudience[src]

impl Serialize for SurveyAudience[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