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_type/AttributeDefinition.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ public interface AttributeDefinition {
98
98
publicTextInputHintgetInputHint();
99
99
100
100
/**
101
-
* <p>If <code>true</code>, the Attribute's values are available for the Product Projections Search API for use in full-text search queries, filters, and facets.</p>
101
+
* <p>If <code>true</code>, the Attribute's values are available in the Product Projection Search or the Product Search API for use in full-text search queries, filters, and facets.</p>
102
102
* <p>Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
103
103
* @return isSearchable
104
104
*/
@@ -156,7 +156,7 @@ public interface AttributeDefinition {
* <p>If <code>true</code>, the Attribute's values are available for the Product Projections Search API for use in full-text search queries, filters, and facets.</p>
159
+
* <p>If <code>true</code>, the Attribute's values are available in the Product Projection Search or the Product Search API for use in full-text search queries, filters, and facets.</p>
160
160
* <p>Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/AttributeDefinitionBuilder.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -188,7 +188,7 @@ public AttributeDefinitionBuilder inputHint(
188
188
}
189
189
190
190
/**
191
-
* <p>If <code>true</code>, the Attribute's values are available for the Product Projections Search API for use in full-text search queries, filters, and facets.</p>
191
+
* <p>If <code>true</code>, the Attribute's values are available in the Product Projection Search or the Product Search API for use in full-text search queries, filters, and facets.</p>
192
192
* <p>Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
193
193
* @param isSearchable value to be set
194
194
* @return Builder
@@ -264,7 +264,7 @@ public com.commercetools.api.models.product_type.TextInputHint getInputHint() {
264
264
}
265
265
266
266
/**
267
-
* <p>If <code>true</code>, the Attribute's values are available for the Product Projections Search API for use in full-text search queries, filters, and facets.</p>
267
+
* <p>If <code>true</code>, the Attribute's values are available in the Product Projection Search or the Product Search API for use in full-text search queries, filters, and facets.</p>
268
268
* <p>Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/AttributeDefinitionDraft.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ public interface AttributeDefinitionDraft extends io.vrap.rmf.base.client.Draft<
47
47
publicAttributeTypegetType();
48
48
49
49
/**
50
-
* <p>User-defined name of the Attribute that is unique with the Project.</p>
50
+
* <p>User-defined name of the Attribute that is unique to the Project.</p>
51
51
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
52
52
* @return name
53
53
*/
@@ -97,7 +97,7 @@ public interface AttributeDefinitionDraft extends io.vrap.rmf.base.client.Draft<
97
97
publicTextInputHintgetInputHint();
98
98
99
99
/**
100
-
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projections Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
100
+
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projection Search or the Product Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
101
101
* @return isSearchable
102
102
*/
103
103
@@ -113,7 +113,7 @@ public interface AttributeDefinitionDraft extends io.vrap.rmf.base.client.Draft<
113
113
publicvoidsetType(finalAttributeTypetype);
114
114
115
115
/**
116
-
* <p>User-defined name of the Attribute that is unique with the Project.</p>
116
+
* <p>User-defined name of the Attribute that is unique to the Project.</p>
117
117
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
118
118
* @param name value to be set
119
119
*/
@@ -156,7 +156,7 @@ public interface AttributeDefinitionDraft extends io.vrap.rmf.base.client.Draft<
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projections Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
159
+
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projection Search or the Product Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/AttributeDefinitionDraftBuilder.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ public AttributeDefinitionDraftBuilder type(
73
73
}
74
74
75
75
/**
76
-
* <p>User-defined name of the Attribute that is unique with the Project.</p>
76
+
* <p>User-defined name of the Attribute that is unique to the Project.</p>
77
77
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
78
78
* @param name value to be set
79
79
* @return Builder
@@ -191,7 +191,7 @@ public AttributeDefinitionDraftBuilder inputHint(
191
191
}
192
192
193
193
/**
194
-
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projections Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
194
+
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projection Search or the Product Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
195
195
* @param isSearchable value to be set
196
196
* @return Builder
197
197
*/
@@ -212,7 +212,7 @@ public com.commercetools.api.models.product_type.AttributeType getType() {
212
212
}
213
213
214
214
/**
215
-
* <p>User-defined name of the Attribute that is unique with the Project.</p>
215
+
* <p>User-defined name of the Attribute that is unique to the Project.</p>
216
216
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
217
217
* @return name
218
218
*/
@@ -270,7 +270,7 @@ public com.commercetools.api.models.product_type.TextInputHint getInputHint() {
270
270
}
271
271
272
272
/**
273
-
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projections Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
273
+
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projection Search or the Product Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/AttributeDefinitionDraftImpl.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public com.commercetools.api.models.product_type.AttributeType getType() {
77
77
}
78
78
79
79
/**
80
-
* <p>User-defined name of the Attribute that is unique with the Project.</p>
80
+
* <p>User-defined name of the Attribute that is unique to the Project.</p>
81
81
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
82
82
*/
83
83
@@ -126,7 +126,7 @@ public com.commercetools.api.models.product_type.TextInputHint getInputHint() {
126
126
}
127
127
128
128
/**
129
-
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projections Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
129
+
* <p>Set to <code>true</code> if the Attribute's values should be available in the Product Projection Search or the Product Search API and can be used in full-text search queries, filters, and facets. Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/AttributeDefinitionImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ public com.commercetools.api.models.product_type.TextInputHint getInputHint() {
123
123
}
124
124
125
125
/**
126
-
* <p>If <code>true</code>, the Attribute's values are available for the Product Projections Search API for use in full-text search queries, filters, and facets.</p>
126
+
* <p>If <code>true</code>, the Attribute's values are available in the Product Projection Search or the Product Search API for use in full-text search queries, filters, and facets.</p>
127
127
* <p>Which exact features are available with this flag depends on the specific AttributeType. The maximum size of a searchable field is <strong>restricted</strong> by the Field content size limit. This constraint is enforced at both Product creation and Product update. If the length of the input exceeds the maximum size, an InvalidField error is returned.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/ProductTypeChangeAttributeNameAction.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ public interface ProductTypeChangeAttributeNameAction extends ProductTypeUpdateA
47
47
publicStringgetAttributeName();
48
48
49
49
/**
50
-
* <p>New user-defined name of the Attribute that is unique with the Project.</p>
50
+
* <p>New user-defined name of the Attribute that is unique to the Project.</p>
51
51
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
52
52
* @return newAttributeName
53
53
*/
@@ -63,7 +63,7 @@ public interface ProductTypeChangeAttributeNameAction extends ProductTypeUpdateA
* <p>New user-defined name of the Attribute that is unique with the Project.</p>
66
+
* <p>New user-defined name of the Attribute that is unique to the Project.</p>
67
67
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/ProductTypeChangeAttributeNameActionBuilder.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ public ProductTypeChangeAttributeNameActionBuilder attributeName(final String at
38
38
}
39
39
40
40
/**
41
-
* <p>New user-defined name of the Attribute that is unique with the Project.</p>
41
+
* <p>New user-defined name of the Attribute that is unique to the Project.</p>
42
42
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
43
43
* @param newAttributeName value to be set
44
44
* @return Builder
@@ -59,7 +59,7 @@ public String getAttributeName() {
59
59
}
60
60
61
61
/**
62
-
* <p>New user-defined name of the Attribute that is unique with the Project.</p>
62
+
* <p>New user-defined name of the Attribute that is unique to the Project.</p>
63
63
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
Copy file name to clipboardExpand all lines: commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_type/ProductTypeChangeAttributeNameActionImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ public String getAttributeName() {
64
64
}
65
65
66
66
/**
67
-
* <p>New user-defined name of the Attribute that is unique with the Project.</p>
67
+
* <p>New user-defined name of the Attribute that is unique to the Project.</p>
68
68
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an AttributeDefinitionAlreadyExists error is returned. An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
0 commit comments