Class: Google::Apis::ManufacturersV1::Count
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ManufacturersV1::Count
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
 generated/google/apis/manufacturers_v1/representations.rb,
 generated/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
- 
  
    
      #unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unit in which these products are counted. 
- 
  
    
      #value  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The numeric value of the number of products in a package. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Count 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Count. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Count
Returns a new instance of Count
| 322 323 324 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 322 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#unit ⇒ String
The unit in which these products are counted.
Corresponds to the JSON property unit
| 315 316 317 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 315 def unit @unit end | 
#value ⇒ Fixnum
The numeric value of the number of products in a package.
Corresponds to the JSON property value
| 320 321 322 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 320 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 327 328 329 330 | # File 'generated/google/apis/manufacturers_v1/classes.rb', line 327 def update!(**args) @unit = args[:unit] if args.key?(:unit) @value = args[:value] if args.key?(:value) end |