[][src]Struct google_displayvideo1::FloodlightGroup

pub struct FloodlightGroup {
    pub active_view_config: Option<ActiveViewVideoViewabilityMetricConfig>,
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub floodlight_group_id: Option<String>,
    pub web_tag_type: Option<String>,
    pub custom_variables: Option<HashMap<String, String>>,
    pub lookback_window: Option<LookbackWindow>,
}

A single Floodlight group.

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

active_view_config: Option<ActiveViewVideoViewabilityMetricConfig>

The Active View video viewability metric configuration for the Floodlight group.

display_name: Option<String>

Required. The display name of the Floodlight group.

name: Option<String>

Output only. The resource name of the Floodlight group.

floodlight_group_id: Option<String>

Output only. The unique ID of the Floodlight group. Assigned by the system.

web_tag_type: Option<String>

Required. The web tag type enabled for the Floodlight group.

custom_variables: Option<HashMap<String, String>>

User-defined custom variables owned by the Floodlight group. Use custom Floodlight variables to create reporting data that is tailored to your unique business needs. Custom Floodlight variables use the keys U1=, U2=, and so on, and can take any values that you choose to pass to them. You can use them to track virtually any type of data that you collect about your customers, such as the genre of movie that a customer purchases, the country to which the item is shipped, and so on.

Custom Floodlight variables may not be used to pass any data that could be used or recognized as personally identifiable information (PII).

Example: custom_variables { fields { "U1": value { number_value: 123.4 }, "U2": value { string_value: "MyVariable2" }, "U3": value { string_value: "MyVariable3" } } }

Acceptable values for keys are "U1" through "U100", inclusive. String values must be less than 64 characters long, and cannot contain the following characters: "<>.

lookback_window: Option<LookbackWindow>

Required. The lookback window for the Floodlight group. Both click_days and impression_days are required. Acceptable values for both are 0 to 90, inclusive.

Trait Implementations

impl Clone for FloodlightGroup[src]

impl Debug for FloodlightGroup[src]

impl Default for FloodlightGroup[src]

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

impl RequestValue for FloodlightGroup[src]

impl Resource for FloodlightGroup[src]

impl ResponseResult for FloodlightGroup[src]

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