Class: Io::Flow::V0::Models::OrderQuoteLineErrorCode

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ OrderQuoteLineErrorCode

Returns a new instance of OrderQuoteLineErrorCode.



21817
21818
21819
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21817

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



21815
21816
21817
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21815

def value
  @value
end

Class Method Details

.ALLObject



21837
21838
21839
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21837

def OrderQuoteLineErrorCode.ALL
  @@all ||= [OrderQuoteLineErrorCode.line_item_number_invalid, OrderQuoteLineErrorCode.line_item_number_not_available, OrderQuoteLineErrorCode.line_quantity_invalid, OrderQuoteLineErrorCode.line_value_threshold_exceeded]
end

.apply(value) ⇒ Object

Returns the instance of OrderQuoteLineErrorCode for this value, creating a new instance for an unknown value



21822
21823
21824
21825
21826
21827
21828
21829
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21822

def OrderQuoteLineErrorCode.apply(value)
  if value.instance_of?(OrderQuoteLineErrorCode)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || OrderQuoteLineErrorCode.new(value))
  end
end

.from_string(value) ⇒ Object

Returns the instance of OrderQuoteLineErrorCode for this value, or nil if not found



21832
21833
21834
21835
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21832

def OrderQuoteLineErrorCode.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  OrderQuoteLineErrorCode.ALL.find { |v| v.value == value }
end

.line_item_number_invalidObject



21841
21842
21843
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21841

def OrderQuoteLineErrorCode.line_item_number_invalid
  @@_line_item_number_invalid ||= OrderQuoteLineErrorCode.new('line_item_number_invalid')
end

.line_item_number_not_availableObject



21845
21846
21847
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21845

def OrderQuoteLineErrorCode.line_item_number_not_available
  @@_line_item_number_not_available ||= OrderQuoteLineErrorCode.new('line_item_number_not_available')
end

.line_quantity_invalidObject



21849
21850
21851
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21849

def OrderQuoteLineErrorCode.line_quantity_invalid
  @@_line_quantity_invalid ||= OrderQuoteLineErrorCode.new('line_quantity_invalid')
end

.line_value_threshold_exceededObject



21853
21854
21855
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21853

def OrderQuoteLineErrorCode.line_value_threshold_exceeded
  @@_line_value_threshold_exceeded ||= OrderQuoteLineErrorCode.new('line_value_threshold_exceeded')
end

Instance Method Details

#to_hashObject



21857
21858
21859
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21857

def to_hash
  value
end