pub struct FloodlightGroup {
pub active_view_config: Option<ActiveViewVideoViewabilityMetricConfig>,
pub custom_variables: Option<HashMap<String, Value>>,
pub display_name: Option<String>,
pub floodlight_group_id: Option<i64>,
pub lookback_window: Option<LookbackWindow>,
pub name: Option<String>,
pub web_tag_type: Option<String>,
}
Expand description
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).
- get floodlight groups (response)
- patch floodlight groups (request|response)
Fields§
§active_view_config: Option<ActiveViewVideoViewabilityMetricConfig>
The Active View video viewability metric configuration for the Floodlight group.
custom_variables: Option<HashMap<String, Value>>
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: "<>
.
display_name: Option<String>
Required. The display name of the Floodlight group.
floodlight_group_id: Option<i64>
Output only. The unique ID of the Floodlight group. Assigned by the system.
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.
name: Option<String>
Output only. The resource name of the Floodlight group.
web_tag_type: Option<String>
Required. The web tag type enabled for the Floodlight group.
Trait Implementations§
Source§impl Clone for FloodlightGroup
impl Clone for FloodlightGroup
Source§fn clone(&self) -> FloodlightGroup
fn clone(&self) -> FloodlightGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for FloodlightGroup
impl Debug for FloodlightGroup
Source§impl Default for FloodlightGroup
impl Default for FloodlightGroup
Source§fn default() -> FloodlightGroup
fn default() -> FloodlightGroup
Source§impl<'de> Deserialize<'de> for FloodlightGroup
impl<'de> Deserialize<'de> for FloodlightGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for FloodlightGroup
impl Serialize for FloodlightGroup
impl RequestValue for FloodlightGroup
impl Resource for FloodlightGroup
impl ResponseResult for FloodlightGroup
Auto Trait Implementations§
impl Freeze for FloodlightGroup
impl RefUnwindSafe for FloodlightGroup
impl Send for FloodlightGroup
impl Sync for FloodlightGroup
impl Unpin for FloodlightGroup
impl UnwindSafe for FloodlightGroup
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more