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.



10689
10690
10691
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10689

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



10656
10657
10658
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10656

def breakdown
  @breakdown
end

#date_rangeGoogle::Apis::DfareportingV4::DateRange

Represents a date range. Corresponds to the JSON property dateRange



10661
10662
10663
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10661

def date_range
  @date_range
end

#dimensionString

The dimension option. Corresponds to the JSON property dimension

Returns:

  • (String)


10666
10667
10668
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10666

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



10671
10672
10673
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10671

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>)


10676
10677
10678
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10676

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>)


10681
10682
10683
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10681

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)


10686
10687
10688
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10686

def pivoted
  @pivoted
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10694
10695
10696
10697
10698
10699
10700
10701
10702
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10694

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