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: src/main/java/com/recombee/api_client/api_requests/AddCartAddition.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
importcom.recombee.api_client.util.HTTPMethod;
13
13
14
14
/**
15
-
* Adds a cart addition of a given item made by a given user.
15
+
* Adds a cart addition of the given item made by the given user.
16
16
*/
17
17
publicclassAddCartAdditionextendsRequest {
18
18
@@ -33,11 +33,11 @@ public class AddCartAddition extends Request {
33
33
*/
34
34
protectedBooleancascadeCreate;
35
35
/**
36
-
* Amount (number) added to cart. The default is 1. For example if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal to 2.
36
+
* Amount (number) added to cart. The default is 1. For example, if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal 2.
37
37
*/
38
38
protectedDoubleamount;
39
39
/**
40
-
* Price of the added item. If `amount` is greater than 1, sum of prices of all the items should be given.
40
+
* Price of the added item. If `amount` is greater than 1, the sum of prices of all the items should be given.
41
41
*/
42
42
protectedDoubleprice;
43
43
/**
@@ -77,15 +77,15 @@ public AddCartAddition setCascadeCreate(boolean cascadeCreate) {
77
77
}
78
78
79
79
/**
80
-
* @param amount Amount (number) added to cart. The default is 1. For example if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal to 2.
80
+
* @param amount Amount (number) added to cart. The default is 1. For example, if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal 2.
81
81
*/
82
82
publicAddCartAdditionsetAmount(doubleamount) {
83
83
this.amount = amount;
84
84
returnthis;
85
85
}
86
86
87
87
/**
88
-
* @param price Price of the added item. If `amount` is greater than 1, sum of prices of all the items should be given.
88
+
* @param price Price of the added item. If `amount` is greater than 1, the sum of prices of all the items should be given.
Copy file name to clipboardExpand all lines: src/main/java/com/recombee/api_client/api_requests/AddItemProperty.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
publicclassAddItemPropertyextendsRequest {
18
18
19
19
/**
20
-
* Name of the item property to be created. Currently, the following names are reserved:`id`, `itemid`, caseinsensitively. Also, the length of the property name must not exceed 63 characters.
20
+
* Name of the item property to be created. Currently, the following names are reserved:`id`, `itemid`, case-insensitively. Also, the length of the property name must not exceed 63 characters.
21
21
*/
22
22
protectedStringpropertyName;
23
23
/**
@@ -35,7 +35,7 @@ public class AddItemProperty extends Request {
35
35
36
36
/**
37
37
* Construct the request
38
-
* @param propertyName Name of the item property to be created. Currently, the following names are reserved:`id`, `itemid`, caseinsensitively. Also, the length of the property name must not exceed 63 characters.
38
+
* @param propertyName Name of the item property to be created. Currently, the following names are reserved:`id`, `itemid`, case-insensitively. Also, the length of the property name must not exceed 63 characters.
39
39
* @param type Value type of the item property to be created. One of: `int`, `double`, `string`, `boolean`, `timestamp`, `set`, `image` or `imageList`.
40
40
* * `int`- Signed integer number.
41
41
* * `double` - Floating point number. It uses 64-bit base-2 format (IEEE 754 standard).
* Adds a new Segment into a Manual ReQL Segmentation.
16
+
* The new Segment is defined by a [ReQL](https://docs.recombee.com/reql.html) filter that returns `true` for an item in case that this item belongs to the segment.
17
+
*/
18
+
publicclassAddManualReqlSegmentextendsRequest {
19
+
20
+
/**
21
+
* ID of the Segmentation to which the new Segment should be added
22
+
*/
23
+
protectedStringsegmentationId;
24
+
/**
25
+
* ID of the newly created Segment
26
+
*/
27
+
protectedStringsegmentId;
28
+
/**
29
+
* ReQL filter that returns `true` for items that belong to this Segment. Otherwise returns `false`.
30
+
*/
31
+
protectedStringfilter;
32
+
/**
33
+
* Human-readable name of the Segment that is shown in the Recombee Admin UI.
34
+
*/
35
+
protectedStringtitle;
36
+
37
+
/**
38
+
* Construct the request
39
+
* @param segmentationId ID of the Segmentation to which the new Segment should be added
40
+
* @param segmentId ID of the newly created Segment
41
+
* @param filter ReQL filter that returns `true` for items that belong to this Segment. Otherwise returns `false`.
0 commit comments