class Google::Apis::JobsV3p1beta1::BucketizedCount

Represents count of jobs within one bucket.

Attributes

count[RW]

Number of jobs whose numeric field value fall into `range`. Corresponds to the JSON property `count` @return [Fixnum]

range[RW]

Represents starting and ending value of a range in double. Corresponds to the JSON property `range` @return [Google::Apis::JobsV3p1beta1::BucketRange]

Public Class Methods

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