Class: Io::Flow::V0::Models::TierAvailability

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

Returns a new instance of TierAvailability.



20127
20128
20129
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20127

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



20125
20126
20127
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20125

def value
  @value
end

Class Method Details

.ALLObject



20147
20148
20149
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20147

def TierAvailability.ALL
  @@all ||= [TierAvailability.always, TierAvailability.backup]
end

.alwaysObject

The tier will always be considered to be offered for a customer order shipment



20152
20153
20154
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20152

def TierAvailability.always
  @@_always ||= TierAvailability.new('always')
end

.apply(value) ⇒ Object

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



20132
20133
20134
20135
20136
20137
20138
20139
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20132

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

.backupObject

Indicates that a tier should only be offered as a shipping option when ‘always` tiers are not available



20158
20159
20160
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20158

def TierAvailability.backup
  @@_backup ||= TierAvailability.new('backup')
end

.from_string(value) ⇒ Object

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



20142
20143
20144
20145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20142

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

Instance Method Details

#to_hashObject



20162
20163
20164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20162

def to_hash
  value
end