Class: Google::Apis::JobsV3p1beta1::NumericBucketingResult

Inherits:
Object
  • Object
show all
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

Output only. Custom numeric bucketing result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NumericBucketingResult

Returns a new instance of NumericBucketingResult.



2186
2187
2188
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2186

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

Instance Attribute Details

#countsArray<Google::Apis::JobsV3p1beta1::BucketizedCount>

Count within each bucket. Its size is the length of NumericBucketingOption. bucket_bounds plus 1. Corresponds to the JSON property counts



2172
2173
2174
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2172

def counts
  @counts
end

#max_valueFloat

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

Returns:

  • (Float)


2178
2179
2180
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2178

def max_value
  @max_value
end

#min_valueFloat

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

Returns:

  • (Float)


2184
2185
2186
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2184

def min_value
  @min_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2191
2192
2193
2194
2195
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2191

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