Class: Io::Flow::V0::Models::FlowEntity
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::FlowEntity
- 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 FlowEntity for this value, creating a new instance for an unknown value.
-
.flow_can ⇒ Object
Flow Commerce Canada Inc., Vancouver, BC, CAN.
-
.flow_irl ⇒ Object
Flow Commerce Ltd., Dublin, IRL.
-
.flow_usa ⇒ Object
Flow Commerce Inc., Hoboken, NJ, USA.
-
.from_string(value) ⇒ Object
Returns the instance of FlowEntity for this value, or nil if not found.
Instance Method Summary collapse
-
#initialize(value) ⇒ FlowEntity
constructor
A new instance of FlowEntity.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ FlowEntity
Returns a new instance of FlowEntity.
15964 15965 15966 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15964 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
15962 15963 15964 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15962 def value @value end |
Class Method Details
.ALL ⇒ Object
15984 15985 15986 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15984 def FlowEntity.ALL @@all ||= [FlowEntity.flow_usa, FlowEntity.flow_irl, FlowEntity.flow_can] end |
.apply(value) ⇒ Object
Returns the instance of FlowEntity for this value, creating a new instance for an unknown value
15969 15970 15971 15972 15973 15974 15975 15976 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15969 def FlowEntity.apply(value) if value.instance_of?(FlowEntity) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || FlowEntity.new(value)) end end |
.flow_can ⇒ Object
Flow Commerce Canada Inc., Vancouver, BC, CAN
15999 16000 16001 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15999 def FlowEntity.flow_can @@_flow_can ||= FlowEntity.new('flow-can') end |
.flow_irl ⇒ Object
Flow Commerce Ltd., Dublin, IRL
15994 15995 15996 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15994 def FlowEntity.flow_irl @@_flow_irl ||= FlowEntity.new('flow-irl') end |
.flow_usa ⇒ Object
Flow Commerce Inc., Hoboken, NJ, USA
15989 15990 15991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15989 def FlowEntity.flow_usa @@_flow_usa ||= FlowEntity.new('flow-usa') end |
.from_string(value) ⇒ Object
Returns the instance of FlowEntity for this value, or nil if not found
15979 15980 15981 15982 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15979 def FlowEntity.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) FlowEntity.ALL.find { |v| v.value == value } end |
Instance Method Details
#to_hash ⇒ Object
16003 16004 16005 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16003 def to_hash value end |