class Google::Apis::DfareportingV3_4::Report::FloodlightCriteria

The report criteria for a report of type “FLOODLIGHT”.

Attributes

custom_rich_media_events[RW]

The list of custom rich media events to include. Corresponds to the JSON property `customRichMediaEvents` @return [Array<Google::Apis::DfareportingV3_4::DimensionValue>]

date_range[RW]

Represents a date range. Corresponds to the JSON property `dateRange` @return [Google::Apis::DfareportingV3_4::DateRange]

dimension_filters[RW]

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` @return [Array<Google::Apis::DfareportingV3_4::DimensionValue>]

dimensions[RW]

The list of dimensions the report should include. Corresponds to the JSON property `dimensions` @return [Array<Google::Apis::DfareportingV3_4::SortedDimension>]

floodlight_config_id[RW]

Represents a DimensionValue resource. Corresponds to the JSON property `floodlightConfigId` @return [Google::Apis::DfareportingV3_4::DimensionValue]

metric_names[RW]

The list of names of metrics the report should include. Corresponds to the JSON property `metricNames` @return [Array<String>]

report_properties[RW]

The properties of the report. Corresponds to the JSON property `reportProperties` @return [Google::Apis::DfareportingV3_4::Report::FloodlightCriteria::ReportProperties]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 10716
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 10721
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