Class: Io::Flow::V0::Models::PriceAccuracy

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

Returns a new instance of PriceAccuracy.



18172
18173
18174
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18172

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



18170
18171
18172
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18170

def value
  @value
end

Class Method Details

.ALLObject



18192
18193
18194
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18192

def PriceAccuracy.ALL
  @@all ||= [PriceAccuracy.calculated, PriceAccuracy.estimated_from_partial_destination]
end

.apply(value) ⇒ Object

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



18177
18178
18179
18180
18181
18182
18183
18184
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18177

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

.calculatedObject

The price shown is accurate and will not change unless information already provided also changes.



18198
18199
18200
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18198

def PriceAccuracy.calculated
  @@_calculated ||= PriceAccuracy.new('calculated')
end

.estimated_from_partial_destinationObject

The price shown is based on the best information provided; given a more precise address, the price may change.



18204
18205
18206
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18204

def PriceAccuracy.estimated_from_partial_destination
  @@_estimated_from_partial_destination ||= PriceAccuracy.new('estimated_from_partial_destination')
end

.from_string(value) ⇒ Object

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



18187
18188
18189
18190
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18187

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

Instance Method Details

#to_hashObject



18208
18209
18210
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18208

def to_hash
  value
end