Class: Google::Apis::ManufacturersV1::Capacity

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Capacity

Returns a new instance of Capacity



284
285
286
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 284

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

Instance Attribute Details

#unitString

The unit of the capacity, i.e., MB, GB, or TB. Corresponds to the JSON property unit

Returns:

  • (String)


277
278
279
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 277

def unit
  @unit
end

#valueFixnum

The numeric value of the capacity. Corresponds to the JSON property value

Returns:

  • (Fixnum)


282
283
284
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 282

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



289
290
291
292
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 289

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