Class: Io::Flow::V0::Models::UpdateType
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::UpdateType
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of UpdateType for this value, creating a new instance for an unknown value.
-
.change ⇒ Object
Long value to increment or decrement.
-
.from_string(value) ⇒ Object
Returns the instance of UpdateType for this value, or nil if not found.
-
.set ⇒ Object
Set aboluste quantity to new value with no regard for previous updates.
Instance Method Summary collapse
-
#initialize(value) ⇒ UpdateType
constructor
A new instance of UpdateType.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ UpdateType
9571 9572 9573 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9571 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
9569 9570 9571 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9569 def value @value end |
Class Method Details
.ALL ⇒ Object
9591 9592 9593 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9591 def UpdateType.ALL @@all ||= [UpdateType.change, UpdateType.set] end |
.apply(value) ⇒ Object
Returns the instance of UpdateType for this value, creating a new instance for an unknown value
9576 9577 9578 9579 9580 9581 9582 9583 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9576 def UpdateType.apply(value) if value.instance_of?(UpdateType) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || UpdateType.new(value)) end end |
.change ⇒ Object
Long value to increment or decrement. Positive quantities are added to inventory while negative quantities are decrement from inventory.
9597 9598 9599 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9597 def UpdateType.change @@_change ||= UpdateType.new('change') end |
.from_string(value) ⇒ Object
Returns the instance of UpdateType for this value, or nil if not found
9586 9587 9588 9589 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9586 def UpdateType.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) UpdateType.ALL.find { |v| v.value == value } end |
.set ⇒ Object
Set aboluste quantity to new value with no regard for previous updates
9602 9603 9604 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9602 def UpdateType.set @@_set ||= UpdateType.new('set') end |
Instance Method Details
#to_hash ⇒ Object
9606 9607 9608 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9606 def to_hash value end |