Class: Io::Flow::V0::Models::SortDirection

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

Returns a new instance of SortDirection.



5332
5333
5334
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5332

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



5330
5331
5332
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5330

def value
  @value
end

Class Method Details

.ALLObject



5352
5353
5354
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5352

def SortDirection.ALL
  @@all ||= [SortDirection.ascending, SortDirection.descending]
end

.apply(value) ⇒ Object

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



5337
5338
5339
5340
5341
5342
5343
5344
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5337

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

.ascendingObject



5356
5357
5358
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5356

def SortDirection.ascending
  @@_ascending ||= SortDirection.new('ascending')
end

.descendingObject



5360
5361
5362
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5360

def SortDirection.descending
  @@_descending ||= SortDirection.new('descending')
end

.from_string(value) ⇒ Object

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



5347
5348
5349
5350
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5347

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

Instance Method Details

#to_hashObject



5364
5365
5366
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5364

def to_hash
  value
end