class Io::Flow::V0::Models::GenericErrorCode

Attributes

value[R]

Public Class Methods

ALL() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 21102
def GenericErrorCode.ALL
  @@all ||= [GenericErrorCode.generic_error, GenericErrorCode.client_error, GenericErrorCode.server_error]
end
apply(value) click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 21087
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_error() click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 21113
def GenericErrorCode.client_error
  @@_client_error ||= GenericErrorCode.new('client_error')
end
from_string(value) click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 21097
def GenericErrorCode.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  GenericErrorCode.ALL.find { |v| v.value == value }
end
generic_error() click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 21108
def GenericErrorCode.generic_error
  @@_generic_error ||= GenericErrorCode.new('generic_error')
end
new(value) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 21082
def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end
server_error() click to toggle source

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

# File lib/flow_commerce/flow_api_v0_client.rb, line 21119
def GenericErrorCode.server_error
  @@_server_error ||= GenericErrorCode.new('server_error')
end

Public Instance Methods

to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 21123
def to_hash
  value
end