Class: Google::Apis::DfareportingV3_3::DimensionValueRequest
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::DimensionValueRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb
Overview
Represents a DimensionValuesRequest.
Instance Attribute Summary collapse
-
#dimension_name ⇒ String
The name of the dimension for which values should be requested.
-
#end_date ⇒ Date
Corresponds to the JSON property
endDate
. -
#filters ⇒ Array<Google::Apis::DfareportingV3_3::DimensionFilter>
The list of filters by which to filter values.
-
#kind ⇒ String
The kind of request this is, in this case dfareporting#dimensionValueRequest .
-
#start_date ⇒ Date
Corresponds to the JSON property
startDate
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DimensionValueRequest
constructor
A new instance of DimensionValueRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DimensionValueRequest
Returns a new instance of DimensionValueRequest.
5018 5019 5020 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5018 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_name ⇒ String
The name of the dimension for which values should be requested.
Corresponds to the JSON property dimensionName
4996 4997 4998 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 4996 def dimension_name @dimension_name end |
#end_date ⇒ Date
Corresponds to the JSON property endDate
5001 5002 5003 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5001 def end_date @end_date end |
#filters ⇒ Array<Google::Apis::DfareportingV3_3::DimensionFilter>
The list of filters by which to filter values. The filters are ANDed.
Corresponds to the JSON property filters
5006 5007 5008 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5006 def filters @filters end |
#kind ⇒ String
The kind of request this is, in this case dfareporting#dimensionValueRequest .
Corresponds to the JSON property kind
5011 5012 5013 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5011 def kind @kind end |
#start_date ⇒ Date
Corresponds to the JSON property startDate
5016 5017 5018 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5016 def start_date @start_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5023 5024 5025 5026 5027 5028 5029 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 5023 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 |