Class: Io::Flow::V0::Models::PriceDetailComponentKey
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceDetailComponentKey
- 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 PriceDetailComponentKey for this value, creating a new instance for an unknown value.
-
.base_price ⇒ Object
The base price of the item.
-
.currency_margin ⇒ Object
The amount added to the post-discount item price due to FX markup, as configured in the organization’s currency settings.
-
.discount ⇒ Object
A discount applied to the base price of the item.
-
.duties_added_margin ⇒ Object
The duty owed on the sum of the currency margin, percent item margin, and fixed item margin.
-
.duties_deminimis ⇒ Object
An adjustment made if the item does not meet the duty de minimis rule.
-
.duties_item_price ⇒ Object
The duty owed on the post-discount base item price.
-
.duties_rounding ⇒ Object
The duty owed on any rounding applied to the total item price.
-
.duty_percent_sales_margin ⇒ Object
An adjustment made to duty owed as a result of a percent sales margin.
-
.fixed_item_margin ⇒ Object
The amount added to the post-discount item price from a fixed item margin.
-
.from_string(value) ⇒ Object
Returns the instance of PriceDetailComponentKey for this value, or nil if not found.
-
.item_price_percent_sales_margin ⇒ Object
An adjustment made to the item price as a result of a percent sales margin.
-
.margins_percent_sales_margin ⇒ Object
An adjustment made to the item margins as a result of a percent sales margin.
-
.percent_item_margin ⇒ Object
The amount added to the post-discount item price from a percent item margin.
-
.rounding_percent_sales_margin ⇒ Object
An adjustment made to rounding as a result of a percent sales margin.
-
.vat_added_margin ⇒ Object
The VAT owed on the sum of the currency margin, percent item margin, and fixed item margin.
-
.vat_deminimis ⇒ Object
An adjustment made if the item does not meet the VAT de minimis rule.
-
.vat_duties_added_margin ⇒ Object
The VAT owed on the duty owed on the sum of the currency margin, percent item margin, and fixed item margin.
-
.vat_duties_item_price ⇒ Object
The VAT owed on the duty owed on the post-discount base item price.
-
.vat_duties_rounding ⇒ Object
The VAT owed on the duty owed on any rounding applied to the total item price.
-
.vat_duty_percent_sales_margin ⇒ Object
An adjustment made to VAT on duties (e.g. VAT on duties on item price) owed as a result of a percent sales margin.
-
.vat_item_price ⇒ Object
The VAT owed on the post-discount base item price.
-
.vat_percent_sales_margin ⇒ Object
An adjustment made to VAT owed as a result of a percent sales margin.
-
.vat_rounding ⇒ Object
The VAT owed on any rounding applied to the total item price.
Instance Method Summary collapse
-
#initialize(value) ⇒ PriceDetailComponentKey
constructor
A new instance of PriceDetailComponentKey.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ PriceDetailComponentKey
Returns a new instance of PriceDetailComponentKey.
11633 11634 11635 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11633 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
11631 11632 11633 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11631 def value @value end |
Class Method Details
.ALL ⇒ Object
.apply(value) ⇒ Object
Returns the instance of PriceDetailComponentKey for this value, creating a new instance for an unknown value
11638 11639 11640 11641 11642 11643 11644 11645 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11638 def PriceDetailComponentKey.apply(value) if value.instance_of?(PriceDetailComponentKey) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || PriceDetailComponentKey.new(value)) end end |
.base_price ⇒ Object
The base price of the item.
11658 11659 11660 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11658 def PriceDetailComponentKey.base_price @@_base_price ||= PriceDetailComponentKey.new('base_price') end |
.currency_margin ⇒ Object
The amount added to the post-discount item price due to FX markup, as configured in the organization’s currency settings.
11669 11670 11671 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11669 def PriceDetailComponentKey.currency_margin @@_currency_margin ||= PriceDetailComponentKey.new('currency_margin') end |
.discount ⇒ Object
A discount applied to the base price of the item.
11663 11664 11665 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11663 def PriceDetailComponentKey.discount @@_discount ||= PriceDetailComponentKey.new('discount') end |
.duties_added_margin ⇒ Object
The duty owed on the sum of the currency margin, percent item margin, and fixed item margin.
11692 11693 11694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11692 def PriceDetailComponentKey.duties_added_margin @@_duties_added_margin ||= PriceDetailComponentKey.new('duties_added_margin') end |
.duties_deminimis ⇒ Object
An adjustment made if the item does not meet the duty de minimis rule.
11702 11703 11704 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11702 def PriceDetailComponentKey.duties_deminimis @@_duties_deminimis ||= PriceDetailComponentKey.new('duties_deminimis') end |
.duties_item_price ⇒ Object
The duty owed on the post-discount base item price.
11686 11687 11688 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11686 def PriceDetailComponentKey.duties_item_price @@_duties_item_price ||= PriceDetailComponentKey.new('duties_item_price') end |
.duties_rounding ⇒ Object
The duty owed on any rounding applied to the total item price.
11697 11698 11699 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11697 def PriceDetailComponentKey.duties_rounding @@_duties_rounding ||= PriceDetailComponentKey.new('duties_rounding') end |
.duty_percent_sales_margin ⇒ Object
An adjustment made to duty owed as a result of a percent sales margin.
11770 11771 11772 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11770 def PriceDetailComponentKey.duty_percent_sales_margin @@_duty_percent_sales_margin ||= PriceDetailComponentKey.new('duty_percent_sales_margin') end |
.fixed_item_margin ⇒ Object
The amount added to the post-discount item price from a fixed item margin. Negative amounts represent discounts.
11681 11682 11683 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11681 def PriceDetailComponentKey.fixed_item_margin @@_fixed_item_margin ||= PriceDetailComponentKey.new('fixed_item_margin') end |
.from_string(value) ⇒ Object
Returns the instance of PriceDetailComponentKey for this value, or nil if not found
11648 11649 11650 11651 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11648 def PriceDetailComponentKey.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) PriceDetailComponentKey.ALL.find { |v| v.value == value } end |
.item_price_percent_sales_margin ⇒ Object
An adjustment made to the item price as a result of a percent sales margin.
11744 11745 11746 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11744 def PriceDetailComponentKey.item_price_percent_sales_margin @@_item_price_percent_sales_margin ||= PriceDetailComponentKey.new('item_price_percent_sales_margin') end |
.margins_percent_sales_margin ⇒ Object
An adjustment made to the item margins as a result of a percent sales margin.
11749 11750 11751 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11749 def PriceDetailComponentKey.margins_percent_sales_margin @@_margins_percent_sales_margin ||= PriceDetailComponentKey.new('margins_percent_sales_margin') end |
.percent_item_margin ⇒ Object
The amount added to the post-discount item price from a percent item margin. Negative amounts represent discounts.
11675 11676 11677 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11675 def PriceDetailComponentKey.percent_item_margin @@_percent_item_margin ||= PriceDetailComponentKey.new('percent_item_margin') end |
.rounding_percent_sales_margin ⇒ Object
An adjustment made to rounding as a result of a percent sales margin.
11754 11755 11756 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11754 def PriceDetailComponentKey.rounding_percent_sales_margin @@_rounding_percent_sales_margin ||= PriceDetailComponentKey.new('rounding_percent_sales_margin') end |
.vat_added_margin ⇒ Object
The VAT owed on the sum of the currency margin, percent item margin, and fixed item margin.
11713 11714 11715 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11713 def PriceDetailComponentKey.vat_added_margin @@_vat_added_margin ||= PriceDetailComponentKey.new('vat_added_margin') end |
.vat_deminimis ⇒ Object
An adjustment made if the item does not meet the VAT de minimis rule.
11739 11740 11741 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11739 def PriceDetailComponentKey.vat_deminimis @@_vat_deminimis ||= PriceDetailComponentKey.new('vat_deminimis') end |
.vat_duties_added_margin ⇒ Object
The VAT owed on the duty owed on the sum of the currency margin, percent item margin, and fixed item margin.
11729 11730 11731 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11729 def PriceDetailComponentKey.vat_duties_added_margin @@_vat_duties_added_margin ||= PriceDetailComponentKey.new('vat_duties_added_margin') end |
.vat_duties_item_price ⇒ Object
The VAT owed on the duty owed on the post-discount base item price.
11723 11724 11725 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11723 def PriceDetailComponentKey.vat_duties_item_price @@_vat_duties_item_price ||= PriceDetailComponentKey.new('vat_duties_item_price') end |
.vat_duties_rounding ⇒ Object
The VAT owed on the duty owed on any rounding applied to the total item price.
11734 11735 11736 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11734 def PriceDetailComponentKey.vat_duties_rounding @@_vat_duties_rounding ||= PriceDetailComponentKey.new('vat_duties_rounding') end |
.vat_duty_percent_sales_margin ⇒ Object
An adjustment made to VAT on duties (e.g. VAT on duties on item price) owed as a result of a percent sales margin.
11765 11766 11767 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11765 def PriceDetailComponentKey.vat_duty_percent_sales_margin @@_vat_duty_percent_sales_margin ||= PriceDetailComponentKey.new('vat_duty_percent_sales_margin') end |
.vat_item_price ⇒ Object
The VAT owed on the post-discount base item price.
11707 11708 11709 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11707 def PriceDetailComponentKey.vat_item_price @@_vat_item_price ||= PriceDetailComponentKey.new('vat_item_price') end |
.vat_percent_sales_margin ⇒ Object
An adjustment made to VAT owed as a result of a percent sales margin.
11759 11760 11761 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11759 def PriceDetailComponentKey.vat_percent_sales_margin @@_vat_percent_sales_margin ||= PriceDetailComponentKey.new('vat_percent_sales_margin') end |
.vat_rounding ⇒ Object
The VAT owed on any rounding applied to the total item price.
11718 11719 11720 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11718 def PriceDetailComponentKey.vat_rounding @@_vat_rounding ||= PriceDetailComponentKey.new('vat_rounding') end |
Instance Method Details
#to_hash ⇒ Object
11774 11775 11776 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11774 def to_hash value end |