Class: Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb

Overview

The report criteria for a report of type "CROSS_DIMENSION_REACH".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CrossDimensionReachCriteria

Returns a new instance of CrossDimensionReachCriteria.



10827
10828
10829
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10827

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#breakdownArray<Google::Apis::DfareportingV4::SortedDimension>

The list of dimensions the report should include. Corresponds to the JSON property breakdown



10794
10795
10796
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10794

def breakdown
  @breakdown
end

#date_rangeGoogle::Apis::DfareportingV4::DateRange

Represents a date range. Corresponds to the JSON property dateRange



10799
10800
10801
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10799

def date_range
  @date_range
end

#dimensionString

The dimension option. Corresponds to the JSON property dimension

Returns:

  • (String)


10804
10805
10806
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10804

def dimension
  @dimension
end

#dimension_filtersArray<Google::Apis::DfareportingV4::DimensionValue>

The list of filters on which dimensions are filtered. Corresponds to the JSON property dimensionFilters



10809
10810
10811
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10809

def dimension_filters
  @dimension_filters
end

#metric_namesArray<String>

The list of names of metrics the report should include. Corresponds to the JSON property metricNames

Returns:

  • (Array<String>)


10814
10815
10816
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10814

def metric_names
  @metric_names
end

#overlap_metric_namesArray<String>

The list of names of overlap metrics the report should include. Corresponds to the JSON property overlapMetricNames

Returns:

  • (Array<String>)


10819
10820
10821
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10819

def overlap_metric_names
  @overlap_metric_names
end

#pivotedBoolean Also known as: pivoted?

Whether the report is pivoted or not. Defaults to true. Corresponds to the JSON property pivoted

Returns:

  • (Boolean)


10824
10825
10826
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10824

def pivoted
  @pivoted
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10832
10833
10834
10835
10836
10837
10838
10839
10840
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10832

def update!(**args)
  @breakdown = args[:breakdown] if args.key?(:breakdown)
  @date_range = args[:date_range] if args.key?(:date_range)
  @dimension = args[:dimension] if args.key?(:dimension)
  @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters)
  @metric_names = args[:metric_names] if args.key?(:metric_names)
  @overlap_metric_names = args[:overlap_metric_names] if args.key?(:overlap_metric_names)
  @pivoted = args[:pivoted] if args.key?(:pivoted)
end