Class: Io::Flow::V0::Models::TaxApplicability
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TaxApplicability
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.all ⇒ Object
In all scenarios a customer should pay tax within the Flow system.
-
.apply(value) ⇒ Object
Returns the instance of TaxApplicability for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of TaxApplicability for this value, or nil if not found.
-
.none ⇒ Object
In no scenario should a customer pay tax within the Flow system.
Instance Method Summary collapse
-
#initialize(value) ⇒ TaxApplicability
constructor
A new instance of TaxApplicability.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ TaxApplicability
Returns a new instance of TaxApplicability.
27118 27119 27120 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27118 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
27116 27117 27118 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27116 def value @value end |
Class Method Details
.ALL ⇒ Object
27138 27139 27140 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27138 def TaxApplicability.ALL @@all ||= [TaxApplicability.none, TaxApplicability.all] end |
.all ⇒ Object
In all scenarios a customer should pay tax within the Flow system.
27148 27149 27150 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27148 def TaxApplicability.all @@_all ||= TaxApplicability.new('all') end |
.apply(value) ⇒ Object
Returns the instance of TaxApplicability for this value, creating a new instance for an unknown value
27123 27124 27125 27126 27127 27128 27129 27130 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27123 def TaxApplicability.apply(value) if value.instance_of?(TaxApplicability) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || TaxApplicability.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of TaxApplicability for this value, or nil if not found
27133 27134 27135 27136 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27133 def TaxApplicability.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) TaxApplicability.ALL.find { |v| v.value == value } end |
.none ⇒ Object
In no scenario should a customer pay tax within the Flow system.
27143 27144 27145 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27143 def TaxApplicability.none @@_none ||= TaxApplicability.new('none') end |
Instance Method Details
#to_hash ⇒ Object
27152 27153 27154 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27152 def to_hash value end |