Class: Io::Flow::V0::Models::ExceptionType

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

Returns a new instance of ExceptionType.



18655
18656
18657
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18655

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



18653
18654
18655
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18653

def value
  @value
end

Class Method Details

.ALLObject



18675
18676
18677
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18675

def ExceptionType.ALL
  @@all ||= [ExceptionType.open, ExceptionType.closed]
end

.apply(value) ⇒ Object

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



18660
18661
18662
18663
18664
18665
18666
18667
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18660

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

.closedObject



18683
18684
18685
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18683

def ExceptionType.closed
  @@_closed ||= ExceptionType.new('closed')
end

.from_string(value) ⇒ Object

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



18670
18671
18672
18673
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18670

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

.openObject



18679
18680
18681
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18679

def ExceptionType.open
  @@_open ||= ExceptionType.new('open')
end

Instance Method Details

#to_hashObject



18687
18688
18689
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18687

def to_hash
  value
end