Struct google_adexchangebuyer1d4::DimensionDimensionValue[][src]

pub struct DimensionDimensionValue {
    pub percentage: Option<i32>,
    pub id: Option<i32>,
    pub name: Option<String>,
}

Value of the dimension.

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

Fields

Percent of total impressions for a dimension type. e.g. {dimension_type: 'GENDER', [{dimension_value: {id: 1, name: 'MALE', percentage: 60}}]} Gender MALE is 60% of all impressions which have gender.

Id of the dimension.

Name of the dimension mainly for debugging purposes, except for the case of CREATIVE_SIZE. For CREATIVE_SIZE, strings are used instead of ids.

Trait Implementations

impl Default for DimensionDimensionValue
[src]

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

impl Clone for DimensionDimensionValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DimensionDimensionValue
[src]

Formats the value using the given formatter. Read more

impl Part for DimensionDimensionValue
[src]

Auto Trait Implementations