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_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 used by search engines.</p>
52
+
* <p>Tailored title of the Product that is 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 used by search engines.</p>
60
+
* <p>Tailored description of the Product that is 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 used by search engines.</p>
119
+
* <p>Tailored title of the Product that is 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 used by search engines.</p>
131
+
* <p>Tailored title of the Product that is 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 used by search engines.</p>
143
+
* <p>Tailored title of the Product that is 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 used by search engines.</p>
155
+
* <p>Tailored description of the Product that is 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 used by search engines.</p>
167
+
* <p>Tailored description of the Product that is 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 used by search engines.</p>
179
+
* <p>Tailored description of the Product that is 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 used by search engines.</p>
375
+
* <p>Tailored title of the Product that is 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 used by search engines.</p>
385
+
* <p>Tailored description of the Product that is 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 used by search engines.</p>
82
+
* <p>Tailored title of the Product that is 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/ProductTailoringDraft.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -80,23 +80,23 @@ public interface ProductTailoringDraft extends io.vrap.rmf.base.client.Draft<Pro
80
80
publicLocalizedStringgetDescription();
81
81
82
82
/**
83
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
83
+
* <p>Tailored title of the Product that is used by search engines.</p>
84
84
* @return metaTitle
85
85
*/
86
86
@Valid
87
87
@JsonProperty("metaTitle")
88
88
publicLocalizedStringgetMetaTitle();
89
89
90
90
/**
91
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
91
+
* <p>Tailored description of the Product that is used by search engines.</p>
92
92
* @return metaDescription
93
93
*/
94
94
@Valid
95
95
@JsonProperty("metaDescription")
96
96
publicLocalizedStringgetMetaDescription();
97
97
98
98
/**
99
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
99
+
* <p>Tailored keywords related to the Product that are used by search engines.</p>
100
100
* @return metaKeywords
101
101
*/
102
102
@Valid
@@ -163,21 +163,21 @@ public interface ProductTailoringDraft extends io.vrap.rmf.base.client.Draft<Pro
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringDraftBuilder.java
+12-12
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ public ProductTailoringDraftBuilder description(
211
211
}
212
212
213
213
/**
214
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
214
+
* <p>Tailored title of the Product that is used by search engines.</p>
215
215
* @param builder function to build the metaTitle value
216
216
* @return Builder
217
217
*/
@@ -223,7 +223,7 @@ public ProductTailoringDraftBuilder metaTitle(
223
223
}
224
224
225
225
/**
226
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
226
+
* <p>Tailored title of the Product that is used by search engines.</p>
227
227
* @param builder function to build the metaTitle value
228
228
* @return Builder
229
229
*/
@@ -235,7 +235,7 @@ public ProductTailoringDraftBuilder withMetaTitle(
235
235
}
236
236
237
237
/**
238
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
238
+
* <p>Tailored title of the Product that is used by search engines.</p>
239
239
* @param metaTitle value to be set
240
240
* @return Builder
241
241
*/
@@ -247,7 +247,7 @@ public ProductTailoringDraftBuilder metaTitle(
247
247
}
248
248
249
249
/**
250
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
250
+
* <p>Tailored description of the Product that is used by search engines.</p>
251
251
* @param builder function to build the metaDescription value
252
252
* @return Builder
253
253
*/
@@ -259,7 +259,7 @@ public ProductTailoringDraftBuilder metaDescription(
259
259
}
260
260
261
261
/**
262
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
262
+
* <p>Tailored description of the Product that is used by search engines.</p>
263
263
* @param builder function to build the metaDescription value
264
264
* @return Builder
265
265
*/
@@ -271,7 +271,7 @@ public ProductTailoringDraftBuilder withMetaDescription(
271
271
}
272
272
273
273
/**
274
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
274
+
* <p>Tailored description of the Product that is used by search engines.</p>
275
275
* @param metaDescription value to be set
276
276
* @return Builder
277
277
*/
@@ -283,7 +283,7 @@ public ProductTailoringDraftBuilder metaDescription(
283
283
}
284
284
285
285
/**
286
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
286
+
* <p>Tailored keywords related to the Product that are used by search engines.</p>
287
287
* @param builder function to build the metaKeywords value
288
288
* @return Builder
289
289
*/
@@ -295,7 +295,7 @@ public ProductTailoringDraftBuilder metaKeywords(
295
295
}
296
296
297
297
/**
298
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
298
+
* <p>Tailored keywords related to the Product that are used by search engines.</p>
299
299
* @param builder function to build the metaKeywords value
300
300
* @return Builder
301
301
*/
@@ -307,7 +307,7 @@ public ProductTailoringDraftBuilder withMetaKeywords(
307
307
}
308
308
309
309
/**
310
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
310
+
* <p>Tailored keywords related to the Product that are used by search engines.</p>
311
311
* @param metaKeywords value to be set
312
312
* @return Builder
313
313
*/
@@ -508,7 +508,7 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
508
508
}
509
509
510
510
/**
511
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
511
+
* <p>Tailored title of the Product that is used by search engines.</p>
512
512
* @return metaTitle
513
513
*/
514
514
@@ -518,7 +518,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
518
518
}
519
519
520
520
/**
521
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
521
+
* <p>Tailored description of the Product that is used by search engines.</p>
522
522
* @return metaDescription
523
523
*/
524
524
@@ -528,7 +528,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaDescription()
528
528
}
529
529
530
530
/**
531
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
531
+
* <p>Tailored keywords related to the Product that are 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/ProductTailoringDraftImpl.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -119,23 +119,23 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
119
119
}
120
120
121
121
/**
122
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
122
+
* <p>Tailored title of the Product that is 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/ProductTailoringInStoreDraft.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -69,23 +69,23 @@ public interface ProductTailoringInStoreDraft extends io.vrap.rmf.base.client.Dr
69
69
publicLocalizedStringgetDescription();
70
70
71
71
/**
72
-
* <p>Tailored title of the Product used by external search engines for improved search engine performance.</p>
72
+
* <p>Tailored title of the Product that is used by search engines.</p>
73
73
* @return metaTitle
74
74
*/
75
75
@Valid
76
76
@JsonProperty("metaTitle")
77
77
publicLocalizedStringgetMetaTitle();
78
78
79
79
/**
80
-
* <p>Tailored description of the Product used by external search engines for improved search engine performance.</p>
80
+
* <p>Tailored description of the Product that is used in search engine.</p>
81
81
* @return metaDescription
82
82
*/
83
83
@Valid
84
84
@JsonProperty("metaDescription")
85
85
publicLocalizedStringgetMetaDescription();
86
86
87
87
/**
88
-
* <p>Tailored keywords related to the Product used by external search engines for improved search engine performance.</p>
88
+
* <p>Tailored keywords related to the Product that are used by search engines.</p>
89
89
* @return metaKeywords
90
90
*/
91
91
@Valid
@@ -145,21 +145,21 @@ public interface ProductTailoringInStoreDraft extends io.vrap.rmf.base.client.Dr
0 commit comments