Class: Google::Apis::ManufacturersV1::Capacity
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ManufacturersV1::Capacity
 
 
- 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 capacity of a product. For more information, see https://support.google.com/manufacturers/answer/6124116#capacity.
Instance Attribute Summary collapse
- 
  
    
      #unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unit of the capacity, i.e., MB, GB, or TB.
 - 
  
    
      #value  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The numeric value of the capacity.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Capacity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Capacity.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Capacity
Returns a new instance of Capacity
      296 297 298  | 
    
      # File 'generated/google/apis/manufacturers_v1/classes.rb', line 296 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#unit ⇒ String
The unit of the capacity, i.e., MB, GB, or TB.
Corresponds to the JSON property unit
      289 290 291  | 
    
      # File 'generated/google/apis/manufacturers_v1/classes.rb', line 289 def unit @unit end  | 
  
#value ⇒ Fixnum
The numeric value of the capacity.
Corresponds to the JSON property value
      294 295 296  | 
    
      # File 'generated/google/apis/manufacturers_v1/classes.rb', line 294 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      301 302 303 304  | 
    
      # File 'generated/google/apis/manufacturers_v1/classes.rb', line 301 def update!(**args) @unit = args[:unit] if args.key?(:unit) @value = args[:value] if args.key?(:value) end  |