Class: Google::Apis::JobsV3p1beta1::HistogramFacets
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3p1beta1::HistogramFacets
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v3p1beta1/classes.rb,
lib/google/apis/jobs_v3p1beta1/representations.rb,
lib/google/apis/jobs_v3p1beta1/representations.rb
Overview
Input only. Histogram facets to be specified in SearchJobsRequest.
Instance Attribute Summary collapse
-
#compensation_histogram_facets ⇒ Array<Google::Apis::JobsV3p1beta1::CompensationHistogramRequest>
Optional.
-
#custom_attribute_histogram_facets ⇒ Array<Google::Apis::JobsV3p1beta1::CustomAttributeHistogramRequest>
Optional.
-
#simple_histogram_facets ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HistogramFacets
constructor
A new instance of HistogramFacets.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HistogramFacets
Returns a new instance of HistogramFacets.
978 979 980 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 978 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compensation_histogram_facets ⇒ Array<Google::Apis::JobsV3p1beta1::CompensationHistogramRequest>
Optional. Specifies compensation field-based histogram requests. Duplicate
values of CompensationHistogramRequest.type are not allowed.
Corresponds to the JSON property compensationHistogramFacets
964 965 966 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 964 def compensation_histogram_facets @compensation_histogram_facets end |
#custom_attribute_histogram_facets ⇒ Array<Google::Apis::JobsV3p1beta1::CustomAttributeHistogramRequest>
Optional. Specifies the custom attributes histogram requests. Duplicate values
of CustomAttributeHistogramRequest.key are not allowed.
Corresponds to the JSON property customAttributeHistogramFacets
970 971 972 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 970 def custom_attribute_histogram_facets @custom_attribute_histogram_facets end |
#simple_histogram_facets ⇒ Array<String>
Optional. Specifies the simple type of histogram facets, for example,
COMPANY_SIZE
, EMPLOYMENT_TYPE
etc.
Corresponds to the JSON property simpleHistogramFacets
976 977 978 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 976 def simple_histogram_facets @simple_histogram_facets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
983 984 985 986 987 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 983 def update!(**args) @compensation_histogram_facets = args[:compensation_histogram_facets] if args.key?(:compensation_histogram_facets) @custom_attribute_histogram_facets = args[:custom_attribute_histogram_facets] if args.key?(:custom_attribute_histogram_facets) @simple_histogram_facets = args[:simple_histogram_facets] if args.key?(:simple_histogram_facets) end |