Class: Io::Flow::V0::Models::AdjustmentReasonKey
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AdjustmentReasonKey
- 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 AdjustmentReasonKey for this value, creating a new instance for an unknown value.
-
.duty_deminimis ⇒ Object
If the duty de minimis value has not been met, an adjustment may be made to offset any previously calculated duty.
-
.from_string(value) ⇒ Object
Returns the instance of AdjustmentReasonKey for this value, or nil if not found.
-
.vat_deminimis ⇒ Object
If the VAT de minimis value has not been met, an adjustment may be made to offset any previously calculated VAT.
Instance Method Summary collapse
-
#initialize(value) ⇒ AdjustmentReasonKey
constructor
A new instance of AdjustmentReasonKey.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ AdjustmentReasonKey
Returns a new instance of AdjustmentReasonKey.
12820 12821 12822 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12820 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
12818 12819 12820 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12818 def value @value end |
Class Method Details
.ALL ⇒ Object
12840 12841 12842 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12840 def AdjustmentReasonKey.ALL @@all ||= [AdjustmentReasonKey.duty_deminimis, AdjustmentReasonKey.vat_deminimis] end |
.apply(value) ⇒ Object
Returns the instance of AdjustmentReasonKey for this value, creating a new instance for an unknown value
12825 12826 12827 12828 12829 12830 12831 12832 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12825 def AdjustmentReasonKey.apply(value) if value.instance_of?(AdjustmentReasonKey) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || AdjustmentReasonKey.new(value)) end end |
.duty_deminimis ⇒ Object
If the duty de minimis value has not been met, an adjustment may be made to offset any previously calculated duty.
12846 12847 12848 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12846 def AdjustmentReasonKey.duty_deminimis @@_duty_deminimis ||= AdjustmentReasonKey.new('duty_deminimis') end |
.from_string(value) ⇒ Object
Returns the instance of AdjustmentReasonKey for this value, or nil if not found
12835 12836 12837 12838 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12835 def AdjustmentReasonKey.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) AdjustmentReasonKey.ALL.find { |v| v.value == value } end |
.vat_deminimis ⇒ Object
If the VAT de minimis value has not been met, an adjustment may be made to offset any previously calculated VAT.
12852 12853 12854 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12852 def AdjustmentReasonKey.vat_deminimis @@_vat_deminimis ||= AdjustmentReasonKey.new('vat_deminimis') end |
Instance Method Details
#to_hash ⇒ Object
12856 12857 12858 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12856 def to_hash value end |