class Google::Apis::DfareportingV3_3::DimensionValueRequest
Represents a DimensionValuesRequest.
Attributes
dimension_name[RW]
The name of the dimension for which values should be requested. Corresponds to the JSON property `dimensionName` @return [String]
end_date[RW]
Corresponds to the JSON property `endDate` @return [Date]
filters[RW]
The list of filters by which to filter values. The filters are ANDed. Corresponds to the JSON property `filters` @return [Array<Google::Apis::DfareportingV3_3::DimensionFilter>]
kind[RW]
The kind of request this is, in this case dfareporting#dimensionValueRequest . Corresponds to the JSON property `kind` @return [String]
start_date[RW]
Corresponds to the JSON property `startDate` @return [Date]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 5018 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_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