class Google::Apis::DfareportingV2_3::DimensionValueRequest
Represents a DimensionValuesRequest.
Attributes
The name of the dimension for which values should be requested. Corresponds to the JSON property `dimensionName` @return [String]
The end date of the date range for which to retrieve dimension values. A string of the format “yyyy-MM-dd”. Corresponds to the JSON property `endDate` @return [Date]
The list of filters by which to filter values. The filters are ANDed. Corresponds to the JSON property `filters` @return [Array<Google::Apis::DfareportingV2_3::DimensionFilter>]
The kind of request this is, in this case dfareporting#dimensionValueRequest. Corresponds to the JSON property `kind` @return [String]
The start date of the date range for which to retrieve dimension values. A string of the format “yyyy-MM-dd”. Corresponds to the JSON property `startDate` @return [Date]
Public Class Methods
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 4318 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 4323 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