Struct google_adexchangebuyer1d3::PretargetingConfig[][src]

pub struct PretargetingConfig {
    pub kind: Option<String>,
    pub verticals: Option<Vec<String>>,
    pub platforms: Option<Vec<String>>,
    pub creative_type: Option<Vec<String>>,
    pub geo_criteria_ids: Option<Vec<String>>,
    pub mobile_operating_system_versions: Option<Vec<String>>,
    pub config_id: Option<String>,
    pub excluded_user_lists: Option<Vec<String>>,
    pub is_active: Option<bool>,
    pub config_name: Option<String>,
    pub excluded_verticals: Option<Vec<String>>,
    pub dimensions: Option<Vec<PretargetingConfigDimensions>>,
    pub excluded_geo_criteria_ids: Option<Vec<String>>,
    pub supported_creative_attributes: Option<Vec<String>>,
    pub excluded_content_labels: Option<Vec<String>>,
    pub vendor_types: Option<Vec<String>>,
    pub languages: Option<Vec<String>>,
    pub user_lists: Option<Vec<String>>,
    pub mobile_devices: Option<Vec<String>>,
    pub billing_id: Option<String>,
    pub mobile_carriers: Option<Vec<String>>,
    pub excluded_placements: Option<Vec<PretargetingConfigExcludedPlacements>>,
    pub placements: Option<Vec<PretargetingConfigPlacements>>,
}

There is no detailed description.

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

The kind of the resource, i.e. "adexchangebuyer#pretargetingConfig".

Requests containing any of these vertical ids will match.

Requests matching any of these platforms will match. Possible values are PRETARGETING_PLATFORM_MOBILE, PRETARGETING_PLATFORM_DESKTOP, and PRETARGETING_PLATFORM_TABLET.

List must contain exactly one of PRETARGETING_CREATIVE_TYPE_HTML or PRETARGETING_CREATIVE_TYPE_VIDEO.

Requests containing any of these geo criteria ids will match.

Requests containing any of these mobile operating system version ids will match. Values are from mobile-os.csv in the downloadable files section.

The config id; generated automatically. Leave this field blank for insert requests.

Requests containing any of these users list ids will not match.

Whether this config is active. Required for all requests.

The name of the config. Must be unique. Required for all requests.

Requests containing any of these vertical ids will not match. Values are from the publisher-verticals.txt file in the downloadable files section.

Requests which allow one of these (width, height) pairs will match. All pairs must be supported ad dimensions.

Requests containing any of these geo criteria ids will not match.

Creative attributes should be declared here if all creatives corresponding to this pretargeting configuration have that creative attribute. Values are from pretargetable-creative-attributes.txt in the downloadable files section.

Requests with any of these content labels will not match. Values are from content-labels.txt in the downloadable files section.

Requests that allow any of these vendor ids will match. Values are from vendors.txt in the downloadable files section.

Request containing any of these language codes will match.

Requests containing any of these user list ids will match.

Requests containing any of these mobile device ids will match. Values are from mobile-devices.csv in the downloadable files section.

The id for billing purposes, provided for reference. Leave this field blank for insert requests; the id will be generated automatically.

Requests containing any of these mobile carrier ids will match. Values are from mobile-carriers.csv in the downloadable files section.

Requests containing any of these placements will not match.

Requests containing any of these placements will match.

Trait Implementations

impl Default for PretargetingConfig
[src]

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

impl Clone for PretargetingConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PretargetingConfig
[src]

Formats the value using the given formatter. Read more

impl RequestValue for PretargetingConfig
[src]

impl ResponseResult for PretargetingConfig
[src]

Auto Trait Implementations