Class: Google::Apis::JobsV3::HistogramResults

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ HistogramResults

Returns a new instance of HistogramResults.



1066
1067
1068
# File 'generated/google/apis/jobs_v3/classes.rb', line 1066

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

Instance Attribute Details

#compensation_histogram_resultsArray<Google::Apis::JobsV3::CompensationHistogramResult>

Specifies compensation field-based histogram results that match HistogramFacets.compensation_histogram_requests. Corresponds to the JSON property compensationHistogramResults



1052
1053
1054
# File 'generated/google/apis/jobs_v3/classes.rb', line 1052

def compensation_histogram_results
  @compensation_histogram_results
end

#custom_attribute_histogram_resultsArray<Google::Apis::JobsV3::CustomAttributeHistogramResult>

Specifies histogram results for custom attributes that match HistogramFacets.custom_attribute_histogram_facets. Corresponds to the JSON property customAttributeHistogramResults



1058
1059
1060
# File 'generated/google/apis/jobs_v3/classes.rb', line 1058

def custom_attribute_histogram_results
  @custom_attribute_histogram_results
end

#simple_histogram_resultsArray<Google::Apis::JobsV3::HistogramResult>

Specifies histogram results that matches HistogramFacets.simple_histogram_facets. Corresponds to the JSON property simpleHistogramResults



1064
1065
1066
# File 'generated/google/apis/jobs_v3/classes.rb', line 1064

def simple_histogram_results
  @simple_histogram_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1071
1072
1073
1074
1075
# File 'generated/google/apis/jobs_v3/classes.rb', line 1071

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