Class: Google::Apis::JobsV3p1beta1::CompensationHistogramResult

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

Overview

Output only. Compensation based 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) ⇒ CompensationHistogramResult

Returns a new instance of CompensationHistogramResult.



611
612
613
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 611

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

Instance Attribute Details

#resultGoogle::Apis::JobsV3p1beta1::NumericBucketingResult

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



603
604
605
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 603

def result
  @result
end

#typeString

Type of the request, corresponding to CompensationHistogramRequest.type. Corresponds to the JSON property type

Returns:

  • (String)


609
610
611
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 609

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



616
617
618
619
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 616

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