Class: Google::Apis::DfareportingV3_5::DimensionValueRequest

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

Overview

Represents a DimensionValuesRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DimensionValueRequest

Returns a new instance of DimensionValueRequest.



5136
5137
5138
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5136

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

Instance Attribute Details

#dimension_nameString

The name of the dimension for which values should be requested. Corresponds to the JSON property dimensionName

Returns:

  • (String)


5114
5115
5116
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5114

def dimension_name
  @dimension_name
end

#end_dateDate

Corresponds to the JSON property endDate

Returns:

  • (Date)


5119
5120
5121
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5119

def end_date
  @end_date
end

#filtersArray<Google::Apis::DfareportingV3_5::DimensionFilter>

The list of filters by which to filter values. The filters are ANDed. Corresponds to the JSON property filters



5124
5125
5126
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5124

def filters
  @filters
end

#kindString

The kind of request this is, in this case dfareporting#dimensionValueRequest . Corresponds to the JSON property kind

Returns:

  • (String)


5129
5130
5131
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5129

def kind
  @kind
end

#start_dateDate

Corresponds to the JSON property startDate

Returns:

  • (Date)


5134
5135
5136
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5134

def start_date
  @start_date
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5141
5142
5143
5144
5145
5146
5147
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5141

def update!(**args)
  @dimension_name = args[:dimension_name] if args.key?(:dimension_name)
  @end_date = args[:end_date] if args.key?(:end_date)
  @filters = args[:filters] if args.key?(:filters)
  @kind = args[:kind] if args.key?(:kind)
  @start_date = args[:start_date] if args.key?(:start_date)
end