Skip to content

Commit

Permalink
build(codegen): updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Dec 4, 2024
1 parent 5af95ea commit b1212c0
Show file tree
Hide file tree
Showing 79 changed files with 355 additions and 350 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public interface CategoryImport extends ImportResource {
public LocalizedString getMetaKeywords();

/**
*
* <p>Maps to <code>Category.assets</code>.</p>
* @return assets
*/
@Valid
Expand Down Expand Up @@ -209,15 +209,15 @@ public interface CategoryImport extends ImportResource {
public void setMetaKeywords(final LocalizedString metaKeywords);

/**
* set assets
* <p>Maps to <code>Category.assets</code>.</p>
* @param assets values to be set
*/

@JsonIgnore
public void setAssets(final Asset... assets);

/**
* set assets
* <p>Maps to <code>Category.assets</code>.</p>
* @param assets values to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public CategoryImportBuilder metaKeywords(
}

/**
* set values to the assets
* <p>Maps to <code>Category.assets</code>.</p>
* @param assets value to be set
* @return Builder
*/
Expand All @@ -356,7 +356,7 @@ public CategoryImportBuilder assets(@Nullable final com.commercetools.importapi.
}

/**
* set value to the assets
* <p>Maps to <code>Category.assets</code>.</p>
* @param assets value to be set
* @return Builder
*/
Expand All @@ -368,7 +368,7 @@ public CategoryImportBuilder assets(
}

/**
* add values to the assets
* <p>Maps to <code>Category.assets</code>.</p>
* @param assets value to be set
* @return Builder
*/
Expand All @@ -382,7 +382,7 @@ public CategoryImportBuilder plusAssets(@Nullable final com.commercetools.import
}

/**
* add the value to the assets using the builder function
* <p>Maps to <code>Category.assets</code>.</p>
* @param builder function to build the assets value
* @return Builder
*/
Expand All @@ -397,7 +397,7 @@ public CategoryImportBuilder plusAssets(
}

/**
* set the value to the assets using the builder function
* <p>Maps to <code>Category.assets</code>.</p>
* @param builder function to build the assets value
* @return Builder
*/
Expand All @@ -410,7 +410,7 @@ public CategoryImportBuilder withAssets(
}

/**
* add the value to the assets using the builder function
* <p>Maps to <code>Category.assets</code>.</p>
* @param builder function to build the assets value
* @return Builder
*/
Expand All @@ -421,7 +421,7 @@ public CategoryImportBuilder addAssets(
}

/**
* set the value to the assets using the builder function
* <p>Maps to <code>Category.assets</code>.</p>
* @param builder function to build the assets value
* @return Builder
*/
Expand Down Expand Up @@ -564,7 +564,7 @@ public com.commercetools.importapi.models.common.LocalizedString getMetaKeywords
}

/**
* value of assets}
* <p>Maps to <code>Category.assets</code>.</p>
* @return assets
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public com.commercetools.importapi.models.common.LocalizedString getMetaKeywords
}

/**
*
* <p>Maps to <code>Category.assets</code>.</p>
*/

public java.util.List<com.commercetools.importapi.models.common.Asset> getAssets() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public interface DiscountedPrice {

/**
*
* <p>Money value of the discounted price.</p>
* @return value
*/
@NotNull
Expand All @@ -52,7 +52,7 @@ public interface DiscountedPrice {
public ProductDiscountKeyReference getDiscount();

/**
* set value
* <p>Money value of the discounted price.</p>
* @param value value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class DiscountedPriceBuilder implements Builder<DiscountedPrice> {
private com.commercetools.importapi.models.common.ProductDiscountKeyReference discount;

/**
* set the value to the value
* <p>Money value of the discounted price.</p>
* @param value value to be set
* @return Builder
*/
Expand All @@ -39,7 +39,7 @@ public DiscountedPriceBuilder value(final com.commercetools.importapi.models.com
}

/**
* set the value to the value using the builder function
* <p>Money value of the discounted price.</p>
* @param builder function to build the value value
* @return Builder
*/
Expand Down Expand Up @@ -89,7 +89,7 @@ public DiscountedPriceBuilder discount(
}

/**
* value of value}
* <p>Money value of the discounted price.</p>
* @return value
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public DiscountedPriceImpl() {
}

/**
*
* <p>Money value of the discounted price.</p>
*/

public com.commercetools.importapi.models.common.TypedMoney getValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import jakarta.validation.constraints.NotNull;

/**
* UnresolvedReferences
* <p>References a resource which could not be resolved.</p>
*
* <hr>
* Example to create an instance using the builder pattern
Expand All @@ -33,30 +33,30 @@
public interface UnresolvedReferences {

/**
*
* <p>The <code>key</code> of the resource.</p>
* @return key
*/
@NotNull
@JsonProperty("key")
public String getKey();

/**
* <p>The type of the referenced resource.</p>
* <p>The type of resource.</p>
* @return typeId
*/
@NotNull
@JsonProperty("typeId")
public ReferenceType getTypeId();

/**
* set key
* <p>The <code>key</code> of the resource.</p>
* @param key value to be set
*/

public void setKey(final String key);

/**
* <p>The type of the referenced resource.</p>
* <p>The type of resource.</p>
* @param typeId value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class UnresolvedReferencesBuilder implements Builder<UnresolvedReferences
private com.commercetools.importapi.models.common.ReferenceType typeId;

/**
* set the value to the key
* <p>The <code>key</code> of the resource.</p>
* @param key value to be set
* @return Builder
*/
Expand All @@ -38,7 +38,7 @@ public UnresolvedReferencesBuilder key(final String key) {
}

/**
* <p>The type of the referenced resource.</p>
* <p>The type of resource.</p>
* @param typeId value to be set
* @return Builder
*/
Expand All @@ -49,7 +49,7 @@ public UnresolvedReferencesBuilder typeId(final com.commercetools.importapi.mode
}

/**
* value of key}
* <p>The <code>key</code> of the resource.</p>
* @return key
*/

Expand All @@ -58,7 +58,7 @@ public String getKey() {
}

/**
* <p>The type of the referenced resource.</p>
* <p>The type of resource.</p>
* @return typeId
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.apache.commons.lang3.builder.ToStringStyle;

/**
* UnresolvedReferences
* <p>References a resource which could not be resolved.</p>
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class UnresolvedReferencesImpl implements UnresolvedReferences, ModelBase {
Expand All @@ -43,15 +43,15 @@ public UnresolvedReferencesImpl() {
}

/**
*
* <p>The <code>key</code> of the resource.</p>
*/

public String getKey() {
return this.key;
}

/**
* <p>The type of the referenced resource.</p>
* <p>The type of resource.</p>
*/

public com.commercetools.importapi.models.common.ReferenceType getTypeId() {
Expand Down
Loading

0 comments on commit b1212c0

Please sign in to comment.