You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductData.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -84,15 +84,15 @@ public interface ProductData extends ProductDataLike {
84
84
publicLocalizedStringgetSlug();
85
85
86
86
/**
87
-
* <p>Title of the Product as displayed in search engine results.</p>
87
+
* <p>Title of the Product as used by search engines.</p>
88
88
* @return metaTitle
89
89
*/
90
90
@Valid
91
91
@JsonProperty("metaTitle")
92
92
publicLocalizedStringgetMetaTitle();
93
93
94
94
/**
95
-
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
95
+
* <p>Description of the Product as used by search engines.</p>
96
96
* @return metaDescription
97
97
*/
98
98
@Valid
@@ -178,14 +178,14 @@ public interface ProductData extends ProductDataLike {
178
178
publicvoidsetSlug(finalLocalizedStringslug);
179
179
180
180
/**
181
-
* <p>Title of the Product as displayed in search engine results.</p>
181
+
* <p>Title of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductDataBuilder.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -288,7 +288,7 @@ public ProductDataBuilder slug(final com.commercetools.api.models.common.Localiz
288
288
}
289
289
290
290
/**
291
-
* <p>Title of the Product as displayed in search engine results.</p>
291
+
* <p>Title of the Product as used by search engines.</p>
292
292
* @param builder function to build the metaTitle value
293
293
* @return Builder
294
294
*/
@@ -300,7 +300,7 @@ public ProductDataBuilder metaTitle(
300
300
}
301
301
302
302
/**
303
-
* <p>Title of the Product as displayed in search engine results.</p>
303
+
* <p>Title of the Product as used by search engines.</p>
304
304
* @param builder function to build the metaTitle value
305
305
* @return Builder
306
306
*/
@@ -312,7 +312,7 @@ public ProductDataBuilder withMetaTitle(
312
312
}
313
313
314
314
/**
315
-
* <p>Title of the Product as displayed in search engine results.</p>
315
+
* <p>Title of the Product as used by search engines.</p>
316
316
* @param metaTitle value to be set
317
317
* @return Builder
318
318
*/
@@ -323,7 +323,7 @@ public ProductDataBuilder metaTitle(@Nullable final com.commercetools.api.models
323
323
}
324
324
325
325
/**
326
-
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
326
+
* <p>Description of the Product as used by search engines.</p>
327
327
* @param builder function to build the metaDescription value
328
328
* @return Builder
329
329
*/
@@ -335,7 +335,7 @@ public ProductDataBuilder metaDescription(
335
335
}
336
336
337
337
/**
338
-
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
338
+
* <p>Description of the Product as used by search engines.</p>
339
339
* @param builder function to build the metaDescription value
340
340
* @return Builder
341
341
*/
@@ -347,7 +347,7 @@ public ProductDataBuilder withMetaDescription(
347
347
}
348
348
349
349
/**
350
-
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
350
+
* <p>Description of the Product as used by search engines.</p>
351
351
* @param metaDescription value to be set
352
352
* @return Builder
353
353
*/
@@ -599,7 +599,7 @@ public com.commercetools.api.models.common.LocalizedString getSlug() {
599
599
}
600
600
601
601
/**
602
-
* <p>Title of the Product as displayed in search engine results.</p>
602
+
* <p>Title of the Product as used by search engines.</p>
603
603
* @return metaTitle
604
604
*/
605
605
@@ -609,7 +609,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
609
609
}
610
610
611
611
/**
612
-
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
612
+
* <p>Description of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductDataImpl.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -119,15 +119,15 @@ public com.commercetools.api.models.common.LocalizedString getSlug() {
119
119
}
120
120
121
121
/**
122
-
* <p>Title of the Product as displayed in search engine results.</p>
122
+
* <p>Title of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductDraft.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -103,15 +103,15 @@ public interface ProductDraft
103
103
publicCategoryOrderHintsgetCategoryOrderHints();
104
104
105
105
/**
106
-
* <p>Title of the Product as displayed in search engine results.</p>
106
+
* <p>Title of the Product as used by search engines.</p>
107
107
* @return metaTitle
108
108
*/
109
109
@Valid
110
110
@JsonProperty("metaTitle")
111
111
publicLocalizedStringgetMetaTitle();
112
112
113
113
/**
114
-
* <p>Description of the Product as displayed in search engine results.</p>
114
+
* <p>Description of the Product as used by search engines.</p>
115
115
* @return metaDescription
116
116
*/
117
117
@Valid
@@ -242,14 +242,14 @@ public interface ProductDraft
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductDraftBuilder.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -362,7 +362,7 @@ public ProductDraftBuilder categoryOrderHints(
362
362
}
363
363
364
364
/**
365
-
* <p>Title of the Product as displayed in search engine results.</p>
365
+
* <p>Title of the Product as used by search engines.</p>
366
366
* @param builder function to build the metaTitle value
367
367
* @return Builder
368
368
*/
@@ -374,7 +374,7 @@ public ProductDraftBuilder metaTitle(
374
374
}
375
375
376
376
/**
377
-
* <p>Title of the Product as displayed in search engine results.</p>
377
+
* <p>Title of the Product as used by search engines.</p>
378
378
* @param builder function to build the metaTitle value
379
379
* @return Builder
380
380
*/
@@ -386,7 +386,7 @@ public ProductDraftBuilder withMetaTitle(
386
386
}
387
387
388
388
/**
389
-
* <p>Title of the Product as displayed in search engine results.</p>
389
+
* <p>Title of the Product as used by search engines.</p>
390
390
* @param metaTitle value to be set
391
391
* @return Builder
392
392
*/
@@ -398,7 +398,7 @@ public ProductDraftBuilder metaTitle(
398
398
}
399
399
400
400
/**
401
-
* <p>Description of the Product as displayed in search engine results.</p>
401
+
* <p>Description of the Product as used by search engines.</p>
402
402
* @param builder function to build the metaDescription value
403
403
* @return Builder
404
404
*/
@@ -410,7 +410,7 @@ public ProductDraftBuilder metaDescription(
410
410
}
411
411
412
412
/**
413
-
* <p>Description of the Product as displayed in search engine results.</p>
413
+
* <p>Description of the Product as used by search engines.</p>
414
414
* @param builder function to build the metaDescription value
415
415
* @return Builder
416
416
*/
@@ -422,7 +422,7 @@ public ProductDraftBuilder withMetaDescription(
422
422
}
423
423
424
424
/**
425
-
* <p>Description of the Product as displayed in search engine results.</p>
425
+
* <p>Description of the Product as used by search engines.</p>
426
426
* @param metaDescription value to be set
427
427
* @return Builder
428
428
*/
@@ -798,7 +798,7 @@ public com.commercetools.api.models.product.CategoryOrderHints getCategoryOrderH
798
798
}
799
799
800
800
/**
801
-
* <p>Title of the Product as displayed in search engine results.</p>
801
+
* <p>Title of the Product as used by search engines.</p>
802
802
* @return metaTitle
803
803
*/
804
804
@@ -808,7 +808,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
808
808
}
809
809
810
810
/**
811
-
* <p>Description of the Product as displayed in search engine results.</p>
811
+
* <p>Description of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product/ProductDraftImpl.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -162,15 +162,15 @@ public com.commercetools.api.models.product.CategoryOrderHints getCategoryOrderH
162
162
}
163
163
164
164
/**
165
-
* <p>Title of the Product as displayed in search engine results.</p>
165
+
* <p>Title of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringData.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -49,15 +49,15 @@ public interface ProductTailoringData {
49
49
publicLocalizedStringgetDescription();
50
50
51
51
/**
52
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
52
+
* <p>Tailored title of the Product as used by search engines.</p>
53
53
* @return metaTitle
54
54
*/
55
55
@Valid
56
56
@JsonProperty("metaTitle")
57
57
publicLocalizedStringgetMetaTitle();
58
58
59
59
/**
60
-
* <p>Tailored description of the Product as displayed in search engine results.</p>
60
+
* <p>Tailored description of the Product as used by search engines.</p>
61
61
* @return metaDescription
62
62
*/
63
63
@Valid
@@ -103,14 +103,14 @@ public interface ProductTailoringData {
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringDataBuilder.java
+8-8
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ public ProductTailoringDataBuilder description(
116
116
}
117
117
118
118
/**
119
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
119
+
* <p>Tailored title of the Product as used by search engines.</p>
120
120
* @param builder function to build the metaTitle value
121
121
* @return Builder
122
122
*/
@@ -128,7 +128,7 @@ public ProductTailoringDataBuilder metaTitle(
128
128
}
129
129
130
130
/**
131
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
131
+
* <p>Tailored title of the Product as used by search engines.</p>
132
132
* @param builder function to build the metaTitle value
133
133
* @return Builder
134
134
*/
@@ -140,7 +140,7 @@ public ProductTailoringDataBuilder withMetaTitle(
140
140
}
141
141
142
142
/**
143
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
143
+
* <p>Tailored title of the Product as used by search engines.</p>
144
144
* @param metaTitle value to be set
145
145
* @return Builder
146
146
*/
@@ -152,7 +152,7 @@ public ProductTailoringDataBuilder metaTitle(
152
152
}
153
153
154
154
/**
155
-
* <p>Tailored description of the Product as displayed in search engine results.</p>
155
+
* <p>Tailored description of the Product as used by search engines.</p>
156
156
* @param builder function to build the metaDescription value
157
157
* @return Builder
158
158
*/
@@ -164,7 +164,7 @@ public ProductTailoringDataBuilder metaDescription(
164
164
}
165
165
166
166
/**
167
-
* <p>Tailored description of the Product as displayed in search engine results.</p>
167
+
* <p>Tailored description of the Product as used by search engines.</p>
168
168
* @param builder function to build the metaDescription value
169
169
* @return Builder
170
170
*/
@@ -176,7 +176,7 @@ public ProductTailoringDataBuilder withMetaDescription(
176
176
}
177
177
178
178
/**
179
-
* <p>Tailored description of the Product as displayed in search engine results.</p>
179
+
* <p>Tailored description of the Product as used by search engines.</p>
180
180
* @param metaDescription value to be set
181
181
* @return Builder
182
182
*/
@@ -372,7 +372,7 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
372
372
}
373
373
374
374
/**
375
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
375
+
* <p>Tailored title of the Product as used by search engines.</p>
376
376
* @return metaTitle
377
377
*/
378
378
@@ -382,7 +382,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
382
382
}
383
383
384
384
/**
385
-
* <p>Tailored description of the Product as displayed in search engine results.</p>
385
+
* <p>Tailored description of the Product as used by search engines.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringDataImpl.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -79,15 +79,15 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
79
79
}
80
80
81
81
/**
82
-
* <p>Tailored title of the Product as displayed in search engine results.</p>
82
+
* <p>Tailored title of the Product as used by search engines.</p>
0 commit comments