Class: Io::Flow::V0::Models::LocationErrorCode

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

Returns a new instance of LocationErrorCode.



20573
20574
20575
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20573

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



20571
20572
20573
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20571

def value
  @value
end

Class Method Details

.address_requiredObject

Indicates that a non empty address was not specified when required



20598
20599
20600
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20598

def LocationErrorCode.address_required
  @@_address_required ||= LocationErrorCode.new('address_required')
end

.ALLObject



20593
20594
20595
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20593

def LocationErrorCode.ALL
  @@all ||= [LocationErrorCode.address_required, LocationErrorCode.ip_invalid, LocationErrorCode.ip_required, LocationErrorCode.timezone_unavailable]
end

.apply(value) ⇒ Object

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



20578
20579
20580
20581
20582
20583
20584
20585
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20578

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

.from_string(value) ⇒ Object

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



20588
20589
20590
20591
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20588

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

.ip_invalidObject

Indicates the specified IP Address is invalid



20603
20604
20605
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20603

def LocationErrorCode.ip_invalid
  @@_ip_invalid ||= LocationErrorCode.new('ip_invalid')
end

.ip_requiredObject

Indicates that a non empty IP Address was not specified when required



20608
20609
20610
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20608

def LocationErrorCode.ip_required
  @@_ip_required ||= LocationErrorCode.new('ip_required')
end

.timezone_unavailableObject

Indicates that there is no timezone information available for the specified IP Address



20614
20615
20616
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20614

def LocationErrorCode.timezone_unavailable
  @@_timezone_unavailable ||= LocationErrorCode.new('timezone_unavailable')
end

Instance Method Details

#to_hashObject



20618
20619
20620
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20618

def to_hash
  value
end