Class: Google::Apis::JobsV2::CustomAttributeHistogramResult

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

Overview

Output only. Custom attribute histogram result.

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) ⇒ CustomAttributeHistogramResult

Returns a new instance of CustomAttributeHistogramResult



887
888
889
# File 'generated/google/apis/jobs_v2/classes.rb', line 887

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

Instance Attribute Details

#keyString

Stores the key of custom attribute the histogram is performed on. Corresponds to the JSON property key

Returns:

  • (String)


873
874
875
# File 'generated/google/apis/jobs_v2/classes.rb', line 873

def key
  @key
end

#long_value_histogram_resultGoogle::Apis::JobsV2::NumericBucketingResult

Output only. Custom numeric bucketing result. Corresponds to the JSON property longValueHistogramResult



879
880
881
# File 'generated/google/apis/jobs_v2/classes.rb', line 879

def long_value_histogram_result
  @long_value_histogram_result
end

#string_value_histogram_resultHash<String,Fixnum>

Stores a map from the values of string custom field associated with key to the number of jobs with that value in this histogram result. Corresponds to the JSON property stringValueHistogramResult

Returns:

  • (Hash<String,Fixnum>)


885
886
887
# File 'generated/google/apis/jobs_v2/classes.rb', line 885

def string_value_histogram_result
  @string_value_histogram_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



892
893
894
895
896
# File 'generated/google/apis/jobs_v2/classes.rb', line 892

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @long_value_histogram_result = args[:long_value_histogram_result] if args.key?(:long_value_histogram_result)
  @string_value_histogram_result = args[:string_value_histogram_result] if args.key?(:string_value_histogram_result)
end