Struct google_surveys2::MobileAppPanel[][src]

pub struct MobileAppPanel {
    pub owners: Option<Vec<String>>,
    pub mobile_app_panel_id: Option<String>,
    pub name: Option<String>,
    pub language: Option<String>,
    pub country: Option<String>,
    pub is_public_panel: Option<bool>,
}

Representation of an individual pre-defined panel object defining a targeted audience of opinion rewards mobile app users.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

List of email addresses for users who can target members of this panel. Must contain at least the address of the user making the API call for panels that are not public. This field will be empty for public panels.

Unique panel ID string. This corresponds to the mobile_app_panel_id used in Survey Insert requests.

Human readable name of the audience panel.

Language code that the panel can target. For instance, 'en-US'. Uses standard BCP47 language codes. See specification. Any survey created targeting this panel must also target the corresponding language.

Country code for the country of the users that the panel contains. Uses standard ISO 3166-1 2-character language codes. For instance, 'US' for the United States, and 'GB' for the United Kingdom. Any survey created targeting this panel must also target the corresponding country.

Whether or not the panel is accessible to all API users.

Trait Implementations

impl Default for MobileAppPanel
[src]

Returns the "default value" for a type. Read more

impl Clone for MobileAppPanel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MobileAppPanel
[src]

Formats the value using the given formatter. Read more

impl RequestValue for MobileAppPanel
[src]

impl Resource for MobileAppPanel
[src]

impl ResponseResult for MobileAppPanel
[src]

Auto Trait Implementations