Class: Io::Flow::V0::Models::GenericErrorCode

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

Returns a new instance of GenericErrorCode.



19550
19551
19552
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19550

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



19548
19549
19550
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19548

def value
  @value
end

Class Method Details

.ALLObject



19570
19571
19572
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19570

def GenericErrorCode.ALL
  @@all ||= [GenericErrorCode.generic_error, GenericErrorCode.client_error, GenericErrorCode.server_error]
end

.apply(value) ⇒ Object

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



19555
19556
19557
19558
19559
19560
19561
19562
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19555

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

.client_errorObject

A client error has occurred. This represents a misconfiguration of the client



19581
19582
19583
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19581

def GenericErrorCode.client_error
  @@_client_error ||= GenericErrorCode.new('client_error')
end

.from_string(value) ⇒ Object

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



19565
19566
19567
19568
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19565

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

.generic_errorObject

Generic errors are the default type. The accompanying message will provide details on the failure.



19576
19577
19578
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19576

def GenericErrorCode.generic_error
  @@_generic_error ||= GenericErrorCode.new('generic_error')
end

.server_errorObject

A server error has occurred. The Flow tech team is automatically notified of all server errors



19587
19588
19589
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19587

def GenericErrorCode.server_error
  @@_server_error ||= GenericErrorCode.new('server_error')
end

Instance Method Details

#to_hashObject



19591
19592
19593
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19591

def to_hash
  value
end