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.



22049
22050
22051
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22049

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



22047
22048
22049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22047

def value
  @value
end

Class Method Details

.ALLObject



22069
22070
22071
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22069

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



22054
22055
22056
22057
22058
22059
22060
22061
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22054

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



22064
22065
22066
22067
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22064

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

.replacementObject



22077
22078
22079
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22077

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

.standardObject



22073
22074
22075
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22073

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

Instance Method Details

#to_hashObject



22081
22082
22083
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22081

def to_hash
  value
end