Class: Google::Apis::DfareportingV3_4::Report::FloodlightCriteria
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::Report::FloodlightCriteria
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb
Overview
The report criteria for a report of type "FLOODLIGHT".
Defined Under Namespace
Classes: ReportProperties
Instance Attribute Summary collapse
-
#custom_rich_media_events ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of custom rich media events to include.
-
#date_range ⇒ Google::Apis::DfareportingV3_4::DateRange
Represents a date range.
-
#dimension_filters ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of filters on which dimensions are filtered.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV3_4::SortedDimension>
The list of dimensions the report should include.
-
#floodlight_config_id ⇒ Google::Apis::DfareportingV3_4::DimensionValue
Represents a DimensionValue resource.
-
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
-
#report_properties ⇒ Google::Apis::DfareportingV3_4::Report::FloodlightCriteria::ReportProperties
The properties of the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FloodlightCriteria
constructor
A new instance of FloodlightCriteria.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloodlightCriteria
Returns a new instance of FloodlightCriteria.
10443 10444 10445 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10443 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_rich_media_events ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of custom rich media events to include.
Corresponds to the JSON property customRichMediaEvents
10409 10410 10411 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10409 def custom_rich_media_events @custom_rich_media_events end |
#date_range ⇒ Google::Apis::DfareportingV3_4::DateRange
Represents a date range.
Corresponds to the JSON property dateRange
10414 10415 10416 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10414 def date_range @date_range end |
#dimension_filters ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of filters on which dimensions are filtered.
Filters for different dimensions are ANDed, filters for the same dimension are
grouped together and ORed.
Corresponds to the JSON property dimensionFilters
10421 10422 10423 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10421 def dimension_filters @dimension_filters end |
#dimensions ⇒ Array<Google::Apis::DfareportingV3_4::SortedDimension>
The list of dimensions the report should include.
Corresponds to the JSON property dimensions
10426 10427 10428 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10426 def dimensions @dimensions end |
#floodlight_config_id ⇒ Google::Apis::DfareportingV3_4::DimensionValue
Represents a DimensionValue resource.
Corresponds to the JSON property floodlightConfigId
10431 10432 10433 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10431 def floodlight_config_id @floodlight_config_id end |
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
Corresponds to the JSON property metricNames
10436 10437 10438 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10436 def metric_names @metric_names end |
#report_properties ⇒ Google::Apis::DfareportingV3_4::Report::FloodlightCriteria::ReportProperties
The properties of the report.
Corresponds to the JSON property reportProperties
10441 10442 10443 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10441 def report_properties @report_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10448 10449 10450 10451 10452 10453 10454 10455 10456 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10448 def update!(**args) @custom_rich_media_events = args[:custom_rich_media_events] if args.key?(:custom_rich_media_events) @date_range = args[:date_range] if args.key?(:date_range) @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters) @dimensions = args[:dimensions] if args.key?(:dimensions) @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id) @metric_names = args[:metric_names] if args.key?(:metric_names) @report_properties = args[:report_properties] if args.key?(:report_properties) end |