class Google::Apis::JobsV3p1beta1::NumericBucketingResult

Output only. Custom numeric bucketing result.

Attributes

counts[RW]

Count within each bucket. Its size is the length of NumericBucketingOption. bucket_bounds plus 1. Corresponds to the JSON property `counts` @return [Array<Google::Apis::JobsV3p1beta1::BucketizedCount>]

max_value[RW]

Stores the maximum value of the numeric field. Is populated only if [ NumericBucketingOption.requires_min_max] is set to true. Corresponds to the JSON property `maxValue` @return [Float]

min_value[RW]

Stores the minimum value of the numeric field. Will be populated only if [ NumericBucketingOption.requires_min_max] is set to true. Corresponds to the JSON property `minValue` @return [Float]

Public Class Methods

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