Class: Io::Flow::V0::Models::FlowEntity

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

Returns a new instance of FlowEntity.



19101
19102
19103
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19101

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



19099
19100
19101
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19099

def value
  @value
end

Class Method Details

.ALLObject



19121
19122
19123
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19121

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



19106
19107
19108
19109
19110
19111
19112
19113
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19106

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_canObject

Flow Commerce Canada Inc., Vancouver, BC, CAN



19136
19137
19138
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19136

def FlowEntity.flow_can
  @@_flow_can ||= FlowEntity.new('flow-can')
end

.flow_irlObject

Flow Commerce Ltd., Dublin, IRL



19131
19132
19133
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19131

def FlowEntity.flow_irl
  @@_flow_irl ||= FlowEntity.new('flow-irl')
end

.flow_usaObject

Flow Commerce Inc., Hoboken, NJ, USA



19126
19127
19128
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19126

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



19116
19117
19118
19119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19116

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

Instance Method Details

#to_hashObject



19140
19141
19142
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19140

def to_hash
  value
end