Skip to content

Commit

Permalink
Merge pull request #638 from commercetools/gen-sdk-updates
Browse files Browse the repository at this point in the history
Update generated SDKs
  • Loading branch information
kodiakhq[bot] authored May 6, 2024
2 parents 4a71e0f + 9ec9c61 commit 6cfa558
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public interface CartChangeLineItemQuantityAction extends CartUpdateAction {
public Long getQuantity();

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @return externalPrice
*/
Expand All @@ -74,7 +74,7 @@ public interface CartChangeLineItemQuantityAction extends CartUpdateAction {
public Money getExternalPrice();

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @return externalTotalPrice
*/
@Valid
Expand Down Expand Up @@ -104,15 +104,15 @@ public interface CartChangeLineItemQuantityAction extends CartUpdateAction {
public void setQuantity(final Long quantity);

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param externalPrice value to be set
*/

public void setExternalPrice(final Money externalPrice);

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param externalTotalPrice value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public CartChangeLineItemQuantityActionBuilder quantity(final Long quantity) {
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param builder function to build the externalPrice value
* @return Builder
Expand All @@ -86,7 +86,7 @@ public CartChangeLineItemQuantityActionBuilder externalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param builder function to build the externalPrice value
* @return Builder
Expand All @@ -99,7 +99,7 @@ public CartChangeLineItemQuantityActionBuilder withExternalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param externalPrice value to be set
* @return Builder
Expand All @@ -112,7 +112,7 @@ public CartChangeLineItemQuantityActionBuilder externalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param builder function to build the externalTotalPrice value
* @return Builder
*/
Expand All @@ -126,7 +126,7 @@ public CartChangeLineItemQuantityActionBuilder externalTotalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param builder function to build the externalTotalPrice value
* @return Builder
*/
Expand All @@ -139,7 +139,7 @@ public CartChangeLineItemQuantityActionBuilder withExternalTotalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param externalTotalPrice value to be set
* @return Builder
*/
Expand Down Expand Up @@ -181,7 +181,7 @@ public Long getQuantity() {
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @return externalPrice
*/
Expand All @@ -192,7 +192,7 @@ public com.commercetools.api.models.common.Money getExternalPrice() {
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @return externalTotalPrice
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public Long getQuantity() {
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
*/

Expand All @@ -102,7 +102,7 @@ public com.commercetools.api.models.common.Money getExternalPrice() {
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
*/

public com.commercetools.api.models.cart.ExternalLineItemTotalPrice getExternalTotalPrice() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public interface StagedOrderChangeLineItemQuantityAction extends StagedOrderUpda
public Long getQuantity();

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @return externalPrice
*/
Expand All @@ -75,7 +75,7 @@ public interface StagedOrderChangeLineItemQuantityAction extends StagedOrderUpda
public Money getExternalPrice();

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @return externalTotalPrice
*/
@Valid
Expand Down Expand Up @@ -104,15 +104,15 @@ public interface StagedOrderChangeLineItemQuantityAction extends StagedOrderUpda
public void setQuantity(final Long quantity);

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param externalPrice value to be set
*/

public void setExternalPrice(final Money externalPrice);

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param externalTotalPrice value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder quantity(final Long quanti
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param builder function to build the externalPrice value
* @return Builder
Expand All @@ -86,7 +86,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder externalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param builder function to build the externalPrice value
* @return Builder
Expand All @@ -99,7 +99,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder withExternalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @param externalPrice value to be set
* @return Builder
Expand All @@ -112,7 +112,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder externalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param builder function to build the externalTotalPrice value
* @return Builder
*/
Expand All @@ -126,7 +126,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder externalTotalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param builder function to build the externalTotalPrice value
* @return Builder
*/
Expand All @@ -139,7 +139,7 @@ public StagedOrderChangeLineItemQuantityActionBuilder withExternalTotalPrice(
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @param externalTotalPrice value to be set
* @return Builder
*/
Expand Down Expand Up @@ -180,7 +180,7 @@ public Long getQuantity() {
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
* @return externalPrice
*/
Expand All @@ -191,7 +191,7 @@ public com.commercetools.api.models.common.Money getExternalPrice() {
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
* @return externalTotalPrice
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public Long getQuantity() {
}

/**
* <p>Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item with the <code>ExternalPrice</code> LineItemPriceMode.</p>
* <p>Required when the Line Item uses <code>ExternalPrice</code> LineItemPriceMode. Sets the LineItem <code>price</code> to the given value when changing the quantity of a Line Item.</p>
* <p>The LineItem price is updated as described in LineItem Price selection.</p>
*/

Expand All @@ -101,7 +101,7 @@ public com.commercetools.api.models.common.Money getExternalPrice() {
}

/**
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode.</p>
* <p>Sets the LineItem <code>price</code> and <code>totalPrice</code> to the given value when changing the quantity of a Line Item with the <code>ExternalTotal</code> LineItemPriceMode. If <code>externalTotalPrice</code> is not given and the <code>priceMode</code> is <code>ExternalTotal</code>, the external price is unset and the <code>priceMode</code> is set to <code>Platform</code>.</p>
*/

public com.commercetools.api.models.cart.ExternalLineItemTotalPrice getExternalTotalPrice() {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,4 @@ e59c07a51516fe4c9b509b338863a62bd9406d0d
c50b9ffcff1ea4a31e509f124bf0f87baced36af
494b8e902a3947c3c10bee83fde353fca02e3883
486ddbfe9cd2b72d6ad3253ed78b00bc41d0cd3c
47606ecb6f140e1e97dc0578ea2207fb4a9bc5f7

0 comments on commit 6cfa558

Please sign in to comment.