class Google::Apis::JobsV3p1beta1::CompensationHistogramRequest

Input only. Compensation based histogram request.

Attributes

bucketing_option[RW]

Input only. Use this field to specify bucketing option for the histogram search response. Corresponds to the JSON property `bucketingOption` @return [Google::Apis::JobsV3p1beta1::NumericBucketingOption]

type[RW]

Required. Type of the request, representing which field the histogramming should be performed over. A single request can only specify one histogram of each `CompensationHistogramRequestType`. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3p1beta1/classes.rb, line 543
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_v3p1beta1/classes.rb, line 548
def update!(**args)
  @bucketing_option = args[:bucketing_option] if args.key?(:bucketing_option)
  @type = args[:type] if args.key?(:type)
end