From c0c3333943f477ff79ab5baa1868529af9bfe0b8 Mon Sep 17 00:00:00 2001
From: "ct-sdks[bot]" <153784748+ct-sdks[bot]@users.noreply.github.com>
Date: Thu, 14 Mar 2024 10:36:23 +0000
Subject: [PATCH] build(codegen): updating SDK
---
changes.md | 7 +
.../main/resources/graphql/schema.graphqls | 122 +++++++++++++-----
.../api/models/cart/TaxedItemPrice.java | 35 +++++
.../models/cart/TaxedItemPriceBuilder.java | 113 +++++++++++++++-
.../api/models/cart/TaxedItemPriceImpl.java | 30 ++++-
.../api/models/category/Category.java | 4 +-
.../api/models/category/CategoryBuilder.java | 4 +-
.../api/models/category/CategoryDraft.java | 4 +-
.../models/category/CategoryDraftBuilder.java | 4 +-
.../models/category/CategoryDraftImpl.java | 2 +-
.../api/models/category/CategoryImpl.java | 2 +-
.../category/CategorySetExternalIdAction.java | 2 +-
.../CategorySetExternalIdActionImpl.java | 2 +-
.../api/models/customer/Customer.java | 4 +-
.../api/models/customer/CustomerBuilder.java | 4 +-
.../api/models/customer/CustomerDraft.java | 4 +-
.../models/customer/CustomerDraftBuilder.java | 4 +-
.../models/customer/CustomerDraftImpl.java | 2 +-
.../api/models/customer/CustomerImpl.java | 2 +-
.../api/models/tax_category/TaxRateDraft.java | 6 +-
.../tax_category/TaxRateDraftBuilder.java | 16 +--
.../models/tax_category/TaxRateDraftImpl.java | 2 +-
.../cart/TaxedItemPriceQueryBuilderDsl.java | 15 +++
.../api/models/cart/TaxedItemPriceTest.java | 14 ++
references.txt | 1 +
25 files changed, 339 insertions(+), 66 deletions(-)
diff --git a/changes.md b/changes.md
index 02a75726e51..92b770c97a0 100644
--- a/changes.md
+++ b/changes.md
@@ -81,3 +81,10 @@
- added resource `/{projectKey}/in-store/key={storeKey}/products/key={productKey}/product-tailoring`
+
+Added Property(s)
+
+- added property `taxPortions` to type `TaxedItemPrice`
+
Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @return taxPortions + */ + @NotNull + @Valid + @JsonProperty("taxPortions") + public ListTotal tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross
and totalNet
values.
Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param taxPortions values to be set + */ + + @JsonIgnore + public void setTaxPortions(final TaxPortion... taxPortions); + + /** + *Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param taxPortions values to be set + */ + + public void setTaxPortions(final ListTotal tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross
and totalNet
values.
Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param taxPortions value to be set + * @return Builder + */ + + public TaxedItemPriceBuilder taxPortions(final com.commercetools.api.models.cart.TaxPortion... taxPortions) { + this.taxPortions = new ArrayList<>(Arrays.asList(taxPortions)); + return this; + } + + /** + *Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param taxPortions value to be set + * @return Builder + */ + + public TaxedItemPriceBuilder taxPortions( + final java.util.ListTaxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param taxPortions value to be set + * @return Builder + */ + + public TaxedItemPriceBuilder plusTaxPortions(final com.commercetools.api.models.cart.TaxPortion... taxPortions) { + if (this.taxPortions == null) { + this.taxPortions = new ArrayList<>(); + } + this.taxPortions.addAll(Arrays.asList(taxPortions)); + return this; + } + + /** + *Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param builder function to build the taxPortions value + * @return Builder + */ + + public TaxedItemPriceBuilder plusTaxPortions( + FunctionTaxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param builder function to build the taxPortions value + * @return Builder + */ + + public TaxedItemPriceBuilder withTaxPortions( + FunctionTaxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param builder function to build the taxPortions value + * @return Builder + */ + + public TaxedItemPriceBuilder addTaxPortions( + FunctionTaxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @param builder function to build the taxPortions value + * @return Builder + */ + + public TaxedItemPriceBuilder setTaxPortions( + FunctionTotal tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross
and totalNet
values.
Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ * @return taxPortions + */ + + public java.util.ListTotal tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross
and totalNet
values.
Taxable portions added to the total net price.
+ *Calculated from the TaxRates.
+ */ + + public java.util.ListTotal tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross
and totalNet
values.
Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ @@ -297,7 +297,7 @@ public interface Category extends BaseResource, CategoryMixin, com.commercetools public void setOrderHint(final String orderHint); /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryBuilder.java index 8db6adee9f0..8955060d618 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryBuilder.java @@ -435,7 +435,7 @@ public CategoryBuilder orderHint(final String orderHint) { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set * @return Builder */ @@ -797,7 +797,7 @@ public String getOrderHint() { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraft.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraft.java index d20508bd60d..1c52a5f5c89 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraft.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraft.java @@ -80,7 +80,7 @@ public interface CategoryDraft extends com.commercetools.api.models.Customizable public String getOrderHint(); /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ @@ -171,7 +171,7 @@ public interface CategoryDraft extends com.commercetools.api.models.Customizable public void setOrderHint(final String orderHint); /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftBuilder.java index 1e6421bd4bc..f501bd120da 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftBuilder.java @@ -214,7 +214,7 @@ public CategoryDraftBuilder orderHint(@Nullable final String orderHint) { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set * @return Builder */ @@ -514,7 +514,7 @@ public String getOrderHint() { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftImpl.java index 081e0d005be..abe8fc6dd01 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryDraftImpl.java @@ -122,7 +122,7 @@ public String getOrderHint() { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
*/ public String getExternalId() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryImpl.java index c43eedf76b0..9e1b35de41d 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategoryImpl.java @@ -205,7 +205,7 @@ public String getOrderHint() { } /** - *Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
*/ public String getExternalId() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategorySetExternalIdAction.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategorySetExternalIdAction.java index ae75f58a8ac..e662b388337 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategorySetExternalIdAction.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/category/CategorySetExternalIdAction.java @@ -13,7 +13,7 @@ import io.vrap.rmf.base.client.utils.Generated; /** - *This update action sets a new ID that can be used as an additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *This update action sets a new ID that can be used as an additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* *This update action sets a new ID that can be used as an additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *This update action sets a new ID that can be used as an additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") public class CategorySetExternalIdActionImpl implements CategorySetExternalIdAction, ModelBase { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/Customer.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/Customer.java index 43706928978..1dde58479a4 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/Customer.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/Customer.java @@ -85,7 +85,7 @@ public interface Customer extends BaseResource, CustomerMixin, com.commercetools public String getCustomerNumber(); /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ @@ -327,7 +327,7 @@ public interface Customer extends BaseResource, CustomerMixin, com.commercetools public void setCustomerNumber(final String customerNumber); /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerBuilder.java index 58938410148..cfd27ab8315 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerBuilder.java @@ -181,7 +181,7 @@ public CustomerBuilder customerNumber(@Nullable final String customerNumber) { } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set * @return Builder */ @@ -833,7 +833,7 @@ public String getCustomerNumber() { } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraft.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraft.java index 0894bb407e2..3f487a2b7d6 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraft.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraft.java @@ -57,7 +57,7 @@ public interface CustomerDraft extends com.commercetools.api.models.Customizable public String getCustomerNumber(); /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ @@ -279,7 +279,7 @@ public interface CustomerDraft extends com.commercetools.api.models.Customizable public void setCustomerNumber(final String customerNumber); /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftBuilder.java index 32bb315b378..375c162ae94 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftBuilder.java @@ -129,7 +129,7 @@ public CustomerDraftBuilder customerNumber(@Nullable final String customerNumber } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @param externalId value to be set * @return Builder */ @@ -741,7 +741,7 @@ public String getCustomerNumber() { } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
* @return externalId */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftImpl.java index 5e3405a739f..e237ddac1e6 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerDraftImpl.java @@ -155,7 +155,7 @@ public String getCustomerNumber() { } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
*/ public String getExternalId() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerImpl.java index e428e9d5b1e..19ab00291ac 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/customer/CustomerImpl.java @@ -197,7 +197,7 @@ public String getCustomerNumber() { } /** - *Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP).
+ *Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP).
*/ public String getExternalId() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/tax_category/TaxRateDraft.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/tax_category/TaxRateDraft.java index b106ac41eba..d755beaf087 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/tax_category/TaxRateDraft.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/tax_category/TaxRateDraft.java @@ -75,7 +75,7 @@ public interface TaxRateDraft extends io.vrap.rmf.base.client.Draftamount
.
+ * Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
amount
.
+ * Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
amount
.
+ * Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.
Used to calculate the taxPortions
field in a Cart or Order or (Custom) Line Items. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate amount
.