class Google::Apis::JobsV3::HistogramResults

Output only. Histogram results that match HistogramFacets specified in SearchJobsRequest.

Attributes

compensation_histogram_results[RW]

Specifies compensation field-based histogram results that match HistogramFacets.compensation_histogram_requests. Corresponds to the JSON property `compensationHistogramResults` @return [Array<Google::Apis::JobsV3::CompensationHistogramResult>]

custom_attribute_histogram_results[RW]

Specifies histogram results for custom attributes that match HistogramFacets. custom_attribute_histogram_facets. Corresponds to the JSON property `customAttributeHistogramResults` @return [Array<Google::Apis::JobsV3::CustomAttributeHistogramResult>]

simple_histogram_results[RW]

Specifies histogram results that matches HistogramFacets. simple_histogram_facets. Corresponds to the JSON property `simpleHistogramResults` @return [Array<Google::Apis::JobsV3::HistogramResult>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 1003
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v3/classes.rb, line 1008
def update!(**args)
  @compensation_histogram_results = args[:compensation_histogram_results] if args.key?(:compensation_histogram_results)
  @custom_attribute_histogram_results = args[:custom_attribute_histogram_results] if args.key?(:custom_attribute_histogram_results)
  @simple_histogram_results = args[:simple_histogram_results] if args.key?(:simple_histogram_results)
end