Class: Io::Flow::V0::Models::TaxabilityType
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TaxabilityType
- 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
-
.apply(value) ⇒ Object
Returns the instance of TaxabilityType for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of TaxabilityType for this value, or nil if not found.
-
.tax_rule ⇒ Object
Rule indicating how taxes should be applied.
Instance Method Summary collapse
-
#initialize(value) ⇒ TaxabilityType
constructor
A new instance of TaxabilityType.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ TaxabilityType
Returns a new instance of TaxabilityType.
10804 10805 10806 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10804 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
10802 10803 10804 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10802 def value @value end |
Class Method Details
.ALL ⇒ Object
10824 10825 10826 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10824 def TaxabilityType.ALL @@all ||= [TaxabilityType.tax_rule] end |
.apply(value) ⇒ Object
Returns the instance of TaxabilityType for this value, creating a new instance for an unknown value
10809 10810 10811 10812 10813 10814 10815 10816 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10809 def TaxabilityType.apply(value) if value.instance_of?(TaxabilityType) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || TaxabilityType.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of TaxabilityType for this value, or nil if not found
10819 10820 10821 10822 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10819 def TaxabilityType.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) TaxabilityType.ALL.find { |v| v.value == value } end |
.tax_rule ⇒ Object
Rule indicating how taxes should be applied. Acceptable values are defined by the ‘taxability_value’ enum.
10830 10831 10832 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10830 def TaxabilityType.tax_rule @@_tax_rule ||= TaxabilityType.new('tax_rule') end |
Instance Method Details
#to_hash ⇒ Object
10834 10835 10836 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10834 def to_hash value end |