Class: Io::Flow::V0::Models::OrderType

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) ⇒ OrderType

Returns a new instance of OrderType.



23850
23851
23852
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23850

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



23848
23849
23850
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23848

def value
  @value
end

Class Method Details

.ALLObject



23870
23871
23872
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23870

def OrderType.ALL
  @@all ||= [OrderType.standard, OrderType.replacement]
end

.apply(value) ⇒ Object

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



23855
23856
23857
23858
23859
23860
23861
23862
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23855

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

.from_string(value) ⇒ Object

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



23865
23866
23867
23868
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23865

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

.replacementObject



23878
23879
23880
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23878

def OrderType.replacement
  @@_replacement ||= OrderType.new('replacement')
end

.standardObject



23874
23875
23876
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23874

def OrderType.standard
  @@_standard ||= OrderType.new('standard')
end

Instance Method Details

#to_hashObject



23882
23883
23884
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23882

def to_hash
  value
end