Class: Google::Apis::ManufacturersV1::Count

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

Overview

The number of products in a single package. For more information, see https:// support.google.com/manufacturers/answer/6124116#count.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Count

Returns a new instance of Count.



431
432
433
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 431

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

Instance Attribute Details

#unitString

The unit in which these products are counted. Corresponds to the JSON property unit

Returns:

  • (String)


424
425
426
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 424

def unit
  @unit
end

#valueFixnum

The numeric value of the number of products in a package. Corresponds to the JSON property value

Returns:

  • (Fixnum)


429
430
431
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 429

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



436
437
438
439
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 436

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