Skip to content

Commit

Permalink
TASK: Updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Auto Mation committed Sep 2, 2022
1 parent 4fed913 commit 1fdea60
Show file tree
Hide file tree
Showing 43 changed files with 70 additions and 70 deletions.
Expand Up @@ -201,7 +201,7 @@ public interface Cart extends BaseResource, com.commercetools.api.models.DomainR
public ShippingMode getShippingMode();

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/
@NotNull
Expand Down
Expand Up @@ -40,7 +40,7 @@ public interface CartAddCustomShippingMethodAction extends CartUpdateAction {
String ADD_CUSTOM_SHIPPING_METHOD = "addCustomShippingMethod";

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@NotNull
@JsonProperty("shippingKey")
Expand Down
Expand Up @@ -51,7 +51,7 @@ public class CartAddCustomShippingMethodActionBuilder implements Builder<CartAdd
private String custom;

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartAddCustomShippingMethodActionBuilder shippingKey(final String shippingKey) {
Expand Down
Expand Up @@ -75,7 +75,7 @@ public String getAction() {
}

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getShippingKey() {
Expand Down
Expand Up @@ -37,7 +37,7 @@ public interface CartAddShippingMethodAction extends CartUpdateAction {
String ADD_SHIPPING_METHOD = "addShippingMethod";

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@NotNull
@JsonProperty("shippingKey")
Expand Down
Expand Up @@ -45,7 +45,7 @@ public class CartAddShippingMethodActionBuilder implements Builder<CartAddShippi
private String custom;

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartAddShippingMethodActionBuilder shippingKey(final String shippingKey) {
Expand Down
Expand Up @@ -67,7 +67,7 @@ public String getAction() {
}

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getShippingKey() {
Expand Down
Expand Up @@ -494,7 +494,7 @@ public CartBuilder shippingMode(final com.commercetools.api.models.cart.Shipping
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand All @@ -504,7 +504,7 @@ public CartBuilder shipping(final com.commercetools.api.models.cart.Shipping...
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand All @@ -514,7 +514,7 @@ public CartBuilder shipping(final java.util.List<com.commercetools.api.models.ca
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand All @@ -527,7 +527,7 @@ public CartBuilder plusShipping(final com.commercetools.api.models.cart.Shipping
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand All @@ -541,7 +541,7 @@ public CartBuilder plusShipping(
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand Down
Expand Up @@ -192,22 +192,22 @@ public interface CartDraft extends com.commercetools.api.models.CustomizableDraf
/**
* <ul>
* <li>If <code>Single</code>, only a single Shipping Method can be added to the Cart.</li>
* <li>If <code>Multi</code>, multiple Shipping Methods can be added to the Cart.</li>
* <li>If <code>Multiple</code>, multiple Shipping Methods can be added to the Cart.</li>
* </ul>
*/

@JsonProperty("shippingMode")
public ShippingMode getShippingMode();

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@Valid
@JsonProperty("customShipping")
public List<CustomShippingDraft> getCustomShipping();

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@Valid
@JsonProperty("shipping")
Expand Down
Expand Up @@ -489,7 +489,7 @@ public CartDraftBuilder origin(@Nullable final com.commercetools.api.models.cart
/**
* <ul>
* <li>If <code>Single</code>, only a single Shipping Method can be added to the Cart.</li>
* <li>If <code>Multi</code>, multiple Shipping Methods can be added to the Cart.</li>
* <li>If <code>Multiple</code>, multiple Shipping Methods can be added to the Cart.</li>
* </ul>
*/

Expand All @@ -499,7 +499,7 @@ public CartDraftBuilder shippingMode(@Nullable final com.commercetools.api.model
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder customShipping(
Expand All @@ -509,7 +509,7 @@ public CartDraftBuilder customShipping(
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder customShipping(
Expand All @@ -519,7 +519,7 @@ public CartDraftBuilder customShipping(
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder plusCustomShipping(
Expand All @@ -532,7 +532,7 @@ public CartDraftBuilder plusCustomShipping(
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder plusCustomShipping(
Expand All @@ -546,7 +546,7 @@ public CartDraftBuilder plusCustomShipping(
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder withCustomShipping(
Expand All @@ -558,7 +558,7 @@ public CartDraftBuilder withCustomShipping(
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder shipping(@Nullable final com.commercetools.api.models.cart.ShippingDraft... shipping) {
Expand All @@ -567,7 +567,7 @@ public CartDraftBuilder shipping(@Nullable final com.commercetools.api.models.ca
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder shipping(
Expand All @@ -577,7 +577,7 @@ public CartDraftBuilder shipping(
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder plusShipping(@Nullable final com.commercetools.api.models.cart.ShippingDraft... shipping) {
Expand All @@ -589,7 +589,7 @@ public CartDraftBuilder plusShipping(@Nullable final com.commercetools.api.model
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder plusShipping(
Expand All @@ -602,7 +602,7 @@ public CartDraftBuilder plusShipping(
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartDraftBuilder withShipping(
Expand Down
Expand Up @@ -316,7 +316,7 @@ public com.commercetools.api.models.cart.CartOrigin getOrigin() {
/**
* <ul>
* <li>If <code>Single</code>, only a single Shipping Method can be added to the Cart.</li>
* <li>If <code>Multi</code>, multiple Shipping Methods can be added to the Cart.</li>
* <li>If <code>Multiple</code>, multiple Shipping Methods can be added to the Cart.</li>
* </ul>
*/

Expand All @@ -325,15 +325,15 @@ public com.commercetools.api.models.cart.ShippingMode getShippingMode() {
}

/**
* <p>Custom Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Custom Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public java.util.List<com.commercetools.api.models.cart.CustomShippingDraft> getCustomShipping() {
return this.customShipping;
}

/**
* <p>Shipping Methods for a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Shipping Methods for a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public java.util.List<com.commercetools.api.models.cart.ShippingDraft> getShipping() {
Expand Down
Expand Up @@ -342,7 +342,7 @@ public com.commercetools.api.models.cart.ShippingMode getShippingMode() {
}

/**
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multi</code> ShippingMode.</p>
* <p>Holds all shipping-related information per Shipping Method of a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It is automatically updated after the Shipping Method is added.</p>
*/

Expand Down
Expand Up @@ -32,7 +32,7 @@ public interface CartRemoveShippingMethodAction extends CartUpdateAction {
String REMOVE_SHIPPING_METHOD = "removeShippingMethod";

/**
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@NotNull
@JsonProperty("shippingKey")
Expand Down
Expand Up @@ -24,7 +24,7 @@ public class CartRemoveShippingMethodActionBuilder implements Builder<CartRemove
private String shippingKey;

/**
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartRemoveShippingMethodActionBuilder shippingKey(final String shippingKey) {
Expand Down
Expand Up @@ -43,7 +43,7 @@ public String getAction() {
}

/**
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method to remove in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getShippingKey() {
Expand Down
Expand Up @@ -32,7 +32,7 @@ public interface CartSetShippingCustomFieldAction extends CartUpdateAction {
String SET_SHIPPING_CUSTOM_FIELD = "setShippingCustomField";

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

@JsonProperty("shippingKey")
Expand Down
Expand Up @@ -32,7 +32,7 @@ public class CartSetShippingCustomFieldActionBuilder implements Builder<CartSetS
private java.lang.Object value;

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartSetShippingCustomFieldActionBuilder shippingKey(@Nullable final String shippingKey) {
Expand Down
Expand Up @@ -50,7 +50,7 @@ public String getAction() {
}

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getShippingKey() {
Expand Down
Expand Up @@ -33,7 +33,7 @@ public interface CartSetShippingCustomTypeAction extends CartUpdateAction {
String SET_SHIPPING_CUSTOM_TYPE = "setShippingCustomType";

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

@JsonProperty("shippingKey")
Expand Down
Expand Up @@ -33,7 +33,7 @@ public class CartSetShippingCustomTypeActionBuilder implements Builder<CartSetSh
private com.commercetools.api.models.type.FieldContainer fields;

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CartSetShippingCustomTypeActionBuilder shippingKey(@Nullable final String shippingKey) {
Expand Down
Expand Up @@ -51,7 +51,7 @@ public String getAction() {
}

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getShippingKey() {
Expand Down
Expand Up @@ -38,7 +38,7 @@
public interface CustomShippingDraft {

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/
@NotNull
@JsonProperty("key")
Expand Down
Expand Up @@ -51,7 +51,7 @@ public class CustomShippingDraftBuilder implements Builder<CustomShippingDraft>
private String custom;

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public CustomShippingDraftBuilder key(final String key) {
Expand Down
Expand Up @@ -63,7 +63,7 @@ public CustomShippingDraftImpl() {
}

/**
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the custom Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
*/

public String getKey() {
Expand Down
Expand Up @@ -45,7 +45,7 @@ public interface ItemShippingTarget {
public Long getQuantity();

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It connects Line Item quantities with individual shipping addresses.</p>
*/

Expand Down
Expand Up @@ -50,7 +50,7 @@ public ItemShippingTargetBuilder quantity(final Long quantity) {
}

/**
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multi</code> ShippingMode.</p>
* <p>User-defined unique identifier of the Shipping Method in a Cart with <code>Multiple</code> ShippingMode.</p>
* <p>It connects Line Item quantities with individual shipping addresses.</p>
*/

Expand Down

0 comments on commit 1fdea60

Please sign in to comment.