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
@@ -22,8 +22,8 @@ class AddCartAddition < ApiRequest
22
22
# * *Optional arguments (given as hash optional)*
23
23
# - +timestamp+ -> UTC timestamp of the cart addition as ISO8601-1 pattern or UTC epoch time. The default value is the current time.
24
24
# - +cascadeCreate+ -> Sets whether the given user/item should be created if not present in the database.
25
-
# - +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.
26
-
# - +price+ -> Price of the added item. If `amount` is greater than 1, sum of prices of all the items should be given.
25
+
# - +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.
26
+
# - +price+ -> Price of the added item. If `amount` is greater than 1, the sum of prices of all the items should be given.
27
27
# - +recommId+ -> If this cart addition is based on a recommendation request, `recommId` is the id of the clicked recommendation.
28
28
# - +additionalData+ -> A dictionary of additional data for the interaction.
Copy file name to clipboardExpand all lines: lib/recombee_api_client/api/add_item_property.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ class AddItemProperty < ApiRequest
16
16
17
17
##
18
18
# * *Required arguments*
19
-
# - +property_name+ -> 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.
19
+
# - +property_name+ -> 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.
20
20
#
21
21
# - +type+ -> Value type of the item property to be created. One of: `int`, `double`, `string`, `boolean`, `timestamp`, `set`, `image` or `imageList`.
#Adds a new Segment into a Manual ReQL Segmentation.
11
+
#
12
+
#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.
# - +timestamp+ -> UTC timestamp of the purchase as ISO8601-1 pattern or UTC epoch time. The default value is the current time.
24
24
# - +cascadeCreate+ -> Sets whether the given user/item should be created if not present in the database.
25
-
# - +amount+ -> Amount (number) of purchased items. The default is 1. For example if `user-x` purchases two `item-y` during a single order (session...), the `amount` should equal to 2.
26
-
# - +price+ -> Price paid by the user for the item. If `amount` is greater than 1, sum of prices of all the items should be given.
27
-
# - +profit+ -> Your profit from the purchased item. The profit is natural in e-commerce domain (for example if `user-x` purchases `item-y` for $100 and the gross margin is 30 %, then the profit is $30), but is applicable also in other domains (for example at a news company it may be income from displayed advertisement on article page). If `amount` is greater than 1, sum of profit of all the items should be given.
25
+
# - +amount+ -> Amount (number) of purchased items. The default is 1. For example, if `user-x` purchases two `item-y` during a single order (session...), the `amount` should equal 2.
26
+
# - +price+ -> Price paid by the user for the item. If `amount` is greater than 1, the sum of prices of all the items should be given.
27
+
# - +profit+ -> Your profit from the purchased item. The profit is natural in the e-commerce domain (for example, if `user-x` purchases `item-y` for $100 and the gross margin is 30 %, then the profit is $30) but is also applicable in other domains (for example, at a news company it may be income from a displayed advertisement on article page). If `amount` is greater than 1, the sum of profit of all the items should be given.
28
28
# - +recommId+ -> If this purchase is based on a recommendation request, `recommId` is the id of the clicked recommendation.
29
29
# - +additionalData+ -> A dictionary of additional data for the interaction.
0 commit comments