Class: Google::Apis::JobsV2::BucketizedCount

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

Overview

Represents count of jobs within one bucket.

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) ⇒ BucketizedCount

Returns a new instance of BucketizedCount.



89
90
91
# File 'generated/google/apis/jobs_v2/classes.rb', line 89

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

Instance Attribute Details

#countFixnum

Number of jobs whose numeric field value fall into range. Corresponds to the JSON property count

Returns:

  • (Fixnum)


82
83
84
# File 'generated/google/apis/jobs_v2/classes.rb', line 82

def count
  @count
end

#rangeGoogle::Apis::JobsV2::BucketRange

Represents starting and ending value of a range in double. Corresponds to the JSON property range



87
88
89
# File 'generated/google/apis/jobs_v2/classes.rb', line 87

def range
  @range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



94
95
96
97
# File 'generated/google/apis/jobs_v2/classes.rb', line 94

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