Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated SDKs #771

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public interface DiscountedPriceDraft extends io.vrap.rmf.base.client.Draft<Disc

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/
@NotNull
Expand All @@ -54,6 +55,7 @@ public interface DiscountedPriceDraft extends io.vrap.rmf.base.client.Draft<Disc

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public class DiscountedPriceDraftBuilder implements Builder<DiscountedPriceDraft

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -41,6 +42,7 @@ public DiscountedPriceDraftBuilder value(

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -53,6 +55,7 @@ public DiscountedPriceDraftBuilder withValue(

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
* @return Builder
*/
Expand Down Expand Up @@ -103,6 +106,7 @@ public DiscountedPriceDraftBuilder discount(

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public DiscountedPriceDraftImpl() {

/**
* <p>Sets the money value for the discounted price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
*/

public com.commercetools.api.models.common.Money getValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public interface PriceDraft extends com.commercetools.api.models.CustomizableDra

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/
@NotNull
Expand Down Expand Up @@ -135,6 +136,7 @@ public interface PriceDraft extends com.commercetools.api.models.CustomizableDra

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public PriceDraftBuilder key(@Nullable final String key) {

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -78,6 +79,7 @@ public PriceDraftBuilder value(

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -90,6 +92,7 @@ public PriceDraftBuilder withValue(

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
* @return Builder
*/
Expand Down Expand Up @@ -403,6 +406,7 @@ public String getKey() {

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public String getKey() {

/**
* <p>Money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
*/

public com.commercetools.api.models.common.Money getValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface PriceTierDraft extends io.vrap.rmf.base.client.Draft<PriceTierD
public Long getMinimumQuantity();

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @return value
*/
Expand All @@ -61,7 +61,7 @@ public interface PriceTierDraft extends io.vrap.rmf.base.client.Draft<PriceTierD
public void setMinimumQuantity(final Long minimumQuantity);

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @param value value to be set
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public PriceTierDraftBuilder minimumQuantity(final Long minimumQuantity) {
}

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @param builder function to build the value value
* @return Builder
Expand All @@ -53,7 +53,7 @@ public PriceTierDraftBuilder value(
}

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @param builder function to build the value value
* @return Builder
Expand All @@ -66,7 +66,7 @@ public PriceTierDraftBuilder withValue(
}

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @param value value to be set
* @return Builder
Expand All @@ -88,7 +88,7 @@ public Long getMinimumQuantity() {
}

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
* @return value
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Long getMinimumQuantity() {
}

/**
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>.</p>
* <p>Money value that applies when the <code>minimumQuantity</code> is greater than or equal to the LineItem <code>quantity</code>. To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* <p>The <code>currencyCode</code> of a Price tier must be the same as the <code>currencyCode</code> in the <code>value</code> of the related Price.</p>
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public interface StandalonePriceChangeValueAction extends StandalonePriceUpdateA

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/
@NotNull
Expand All @@ -57,6 +58,7 @@ public interface StandalonePriceChangeValueAction extends StandalonePriceUpdateA

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class StandalonePriceChangeValueActionBuilder implements Builder<Standalo

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -43,6 +44,7 @@ public StandalonePriceChangeValueActionBuilder value(

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -55,6 +57,7 @@ public StandalonePriceChangeValueActionBuilder withValue(

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
* @return Builder
*/
Expand All @@ -77,6 +80,7 @@ public StandalonePriceChangeValueActionBuilder staged(@Nullable final Boolean st

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public String getAction() {

/**
* <p>New value to set. Must not be empty.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
*/

public com.commercetools.api.models.common.Money getValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public interface StandalonePriceDraft extends com.commercetools.api.models.Custo

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/
@NotNull
Expand Down Expand Up @@ -164,6 +165,7 @@ public interface StandalonePriceDraft extends com.commercetools.api.models.Custo

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public StandalonePriceDraftBuilder sku(final String sku) {

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -98,6 +99,7 @@ public StandalonePriceDraftBuilder value(

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand All @@ -110,6 +112,7 @@ public StandalonePriceDraftBuilder withValue(

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @param value value to be set
* @return Builder
*/
Expand Down Expand Up @@ -464,6 +467,7 @@ public String getSku() {

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public String getSku() {

/**
* <p>Sets the money value of this Price.</p>
* <p>To set the money value in high precision, use HighPrecisionMoneyDraft.</p>
*/

public com.commercetools.api.models.common.Money getValue() {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -338,3 +338,4 @@ b747e1fa4f246b748a89bccbfd8a43f5b6f51175
7375cdc26481ba55e756479a87270432635bfcf7
df53588d26d7953dfdf44166866ca03045f0a70b
6b69c5425fe16564147deb9b1d6a9a1078dc5330
99e7aa1c7e3ba67a59b6df3efbaf4e320611c549
Loading