class Google::Apis::DisplayvideoV1::FloodlightGroup
A single Floodlight group.
Attributes
Configuration for custom Active View video viewability metrics. Corresponds to the JSON property `activeViewConfig` @return [Google::Apis::DisplayvideoV1::ActiveViewVideoViewabilityMetricConfig]
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: `“<>`. Corresponds to the JSON property `customVariables` @return [Hash<String,Object>]
Required. The display name of the Floodlight group. Corresponds to the JSON property `displayName` @return [String]
Output only. The unique ID of the Floodlight group. Assigned by the system. Corresponds to the JSON property `floodlightGroupId` @return [Fixnum]
Specifies how many days into the past to look when determining whether to record a conversion. Corresponds to the JSON property `lookbackWindow` @return [Google::Apis::DisplayvideoV1::LookbackWindow]
Output only. The resource name of the Floodlight group. Corresponds to the JSON property `name` @return [String]
Required. The web tag type enabled for the Floodlight group. Corresponds to the JSON property `webTagType` @return [String]
Public Class Methods
# File lib/google/apis/displayvideo_v1/classes.rb, line 4588 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/displayvideo_v1/classes.rb, line 4593 def update!(**args) @active_view_config = args[:active_view_config] if args.key?(:active_view_config) @custom_variables = args[:custom_variables] if args.key?(:custom_variables) @display_name = args[:display_name] if args.key?(:display_name) @floodlight_group_id = args[:floodlight_group_id] if args.key?(:floodlight_group_id) @lookback_window = args[:lookback_window] if args.key?(:lookback_window) @name = args[:name] if args.key?(:name) @web_tag_type = args[:web_tag_type] if args.key?(:web_tag_type) end