Skip to content

Commit

Permalink
Merge pull request #754 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 Nov 11, 2024
2 parents 3e80524 + 9e9dfec commit 2d66879
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 56 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ public interface ProductTailoringData {
public LocalizedString getDescription();

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @return metaDescription
*/
@Valid
Expand Down Expand Up @@ -103,14 +103,14 @@ public interface ProductTailoringData {
public void setDescription(final LocalizedString description);

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param metaDescription value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public ProductTailoringDataBuilder description(
}

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -128,7 +128,7 @@ public ProductTailoringDataBuilder metaTitle(
}

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -140,7 +140,7 @@ public ProductTailoringDataBuilder withMetaTitle(
}

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param metaTitle value to be set
* @return Builder
*/
Expand All @@ -152,7 +152,7 @@ public ProductTailoringDataBuilder metaTitle(
}

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -164,7 +164,7 @@ public ProductTailoringDataBuilder metaDescription(
}

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -176,7 +176,7 @@ public ProductTailoringDataBuilder withMetaDescription(
}

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param metaDescription value to be set
* @return Builder
*/
Expand Down Expand Up @@ -372,7 +372,7 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @return metaTitle
*/

Expand All @@ -382,7 +382,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
}

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @return metaDescription
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product as used by search engines.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
return this.metaTitle;
}

/**
* <p>Tailored description of the Product as used by search engines.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaDescription() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,23 +80,23 @@ public interface ProductTailoringDraft extends io.vrap.rmf.base.client.Draft<Pro
public LocalizedString getDescription();

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @return metaDescription
*/
@Valid
@JsonProperty("metaDescription")
public LocalizedString getMetaDescription();

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @return metaKeywords
*/
@Valid
Expand Down Expand Up @@ -163,21 +163,21 @@ public interface ProductTailoringDraft extends io.vrap.rmf.base.client.Draft<Pro
public void setDescription(final LocalizedString description);

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param metaDescription value to be set
*/

public void setMetaDescription(final LocalizedString metaDescription);

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @param metaKeywords value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public ProductTailoringDraftBuilder description(
}

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -223,7 +223,7 @@ public ProductTailoringDraftBuilder metaTitle(
}

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -235,7 +235,7 @@ public ProductTailoringDraftBuilder withMetaTitle(
}

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param metaTitle value to be set
* @return Builder
*/
Expand All @@ -247,7 +247,7 @@ public ProductTailoringDraftBuilder metaTitle(
}

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -259,7 +259,7 @@ public ProductTailoringDraftBuilder metaDescription(
}

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -271,7 +271,7 @@ public ProductTailoringDraftBuilder withMetaDescription(
}

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @param metaDescription value to be set
* @return Builder
*/
Expand All @@ -283,7 +283,7 @@ public ProductTailoringDraftBuilder metaDescription(
}

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @param builder function to build the metaKeywords value
* @return Builder
*/
Expand All @@ -295,7 +295,7 @@ public ProductTailoringDraftBuilder metaKeywords(
}

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @param builder function to build the metaKeywords value
* @return Builder
*/
Expand All @@ -307,7 +307,7 @@ public ProductTailoringDraftBuilder withMetaKeywords(
}

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @param metaKeywords value to be set
* @return Builder
*/
Expand Down Expand Up @@ -508,7 +508,7 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @return metaTitle
*/

Expand All @@ -518,7 +518,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
}

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
* @return metaDescription
*/

Expand All @@ -528,7 +528,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaDescription()
}

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @return metaKeywords
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,23 +119,23 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
return this.metaTitle;
}

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaDescription() {
return this.metaDescription;
}

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaKeywords() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,23 +69,23 @@ public interface ProductTailoringInStoreDraft extends io.vrap.rmf.base.client.Dr
public LocalizedString getDescription();

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used in search engine.</p>
* @return metaDescription
*/
@Valid
@JsonProperty("metaDescription")
public LocalizedString getMetaDescription();

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @return metaKeywords
*/
@Valid
Expand Down Expand Up @@ -145,21 +145,21 @@ public interface ProductTailoringInStoreDraft extends io.vrap.rmf.base.client.Dr
public void setDescription(final LocalizedString description);

/**
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored title of the Product that is used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored description of the Product that is used in search engine.</p>
* @param metaDescription value to be set
*/

public void setMetaDescription(final LocalizedString metaDescription);

/**
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
* <p>Tailored keywords related to the Product that are used by search engines.</p>
* @param metaKeywords value to be set
*/

Expand Down
Loading

0 comments on commit 2d66879

Please sign in to comment.