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
/// <remarks>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.
16
+
/// The new Segment is defined by a [ReQL](https://docs.recombee.com/reql) filter that returns `true` for an item in case that this item belongs to the segment.
/// <remarks>Deletes an item of the given `itemId` from the catalog.
16
16
/// If there are any *purchases*, *ratings*, *bookmarks*, *cart additions*, or *detail views* of the item present in the database, they will be deleted in cascade as well. Also, if the item is present in some *series*, it will be removed from all the *series* where present.
17
-
/// If an item becomes obsolete/no longer available, it is meaningful to keep it in the catalog (along with all the interaction data, which are very useful), and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql.html) instead of deleting the item completely.
17
+
/// If an item becomes obsolete/no longer available, it is meaningful to keep it in the catalog (along with all the interaction data, which are very useful), and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql) instead of deleting the item completely.
/// <remarks>Deletes all the items that pass the filter.
16
-
/// If an item becomes obsolete/no longer available, it is meaningful to **keep it in the catalog** (along with all the interaction data, which are very useful) and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql.html) instead of deleting the item completely.</remarks>
16
+
/// If an item becomes obsolete/no longer available, it is meaningful to **keep it in the catalog** (along with all the interaction data, which are very useful) and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql) instead of deleting the item completely.</remarks>
17
17
publicclassDeleteMoreItems:Request
18
18
{
19
19
privatereadonlystringfilter;
20
-
/// <summary>A [ReQL](https://docs.recombee.com/reql.html) expression, which returns `true` for the items that shall be updated.</summary>
20
+
/// <summary>A [ReQL](https://docs.recombee.com/reql) expression, which returns `true` for the items that shall be updated.</summary>
21
21
publicstringFilter
22
22
{
23
23
get{returnfilter;}
24
24
}
25
25
26
26
/// <summary>Construct the request</summary>
27
-
/// <param name="filter">A [ReQL](https://docs.recombee.com/reql.html) expression, which returns `true` for the items that shall be updated.</param>
27
+
/// <param name="filter">A [ReQL](https://docs.recombee.com/reql) expression, which returns `true` for the items that shall be updated.</param>
Copy file name to clipboardExpand all lines: Src/Recombee.ApiClient/ApiRequests/DeleteSearchSynonym.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
namespaceRecombee.ApiClient.ApiRequests
13
13
{
14
14
/// <summary>Delete Search Synonym</summary>
15
-
/// <remarks>Deletes synonym of the given `id`. This synonym is no longer taken into account in the [Search items](https://docs.recombee.com/api.html#search-items).
15
+
/// <remarks>Deletes synonym of the given `id`. This synonym is no longer taken into account in the [Search items](https://docs.recombee.com/api#search-items).
/// <summary>Boolean-returning [ReQL](https://docs.recombee.com/reql.html) expression, which allows you to filter items to be listed. Only the items for which the expression is *true* will be returned.</summary>
19
+
/// <summary>Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter items to be listed. Only the items for which the expression is *true* will be returned.</summary>
20
20
publicstringFilter
21
21
{
22
22
get{returnfilter;}
@@ -36,7 +36,7 @@ public long? Offset
36
36
privatereadonlybool?returnProperties;
37
37
/// <summary>With `returnProperties=true`, property values of the listed items are returned along with their IDs in a JSON dictionary.
38
38
/// Example response:
39
-
/// ```
39
+
/// ```json
40
40
/// [
41
41
/// {
42
42
/// "itemId": "tv-178",
@@ -62,7 +62,7 @@ public bool? ReturnProperties
62
62
privatereadonlystring[]includedProperties;
63
63
/// <summary>Allows specifying which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
64
64
/// Example response for `includedProperties=description,price`:
65
-
/// ```
65
+
/// ```json
66
66
/// [
67
67
/// {
68
68
/// "itemId": "tv-178",
@@ -83,12 +83,12 @@ public string[] IncludedProperties
83
83
}
84
84
85
85
/// <summary>Construct the request</summary>
86
-
/// <param name="filter">Boolean-returning [ReQL](https://docs.recombee.com/reql.html) expression, which allows you to filter items to be listed. Only the items for which the expression is *true* will be returned.</param>
86
+
/// <param name="filter">Boolean-returning [ReQL](https://docs.recombee.com/reql) expression, which allows you to filter items to be listed. Only the items for which the expression is *true* will be returned.</param>
87
87
/// <param name="count">The number of items to be listed.</param>
88
88
/// <param name="offset">Specifies the number of items to skip (ordered by `itemId`).</param>
89
89
/// <param name="returnProperties">With `returnProperties=true`, property values of the listed items are returned along with their IDs in a JSON dictionary.
90
90
/// Example response:
91
-
/// ```
91
+
/// ```json
92
92
/// [
93
93
/// {
94
94
/// "itemId": "tv-178",
@@ -109,7 +109,7 @@ public string[] IncludedProperties
109
109
/// </param>
110
110
/// <param name="includedProperties">Allows specifying which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
111
111
/// Example response for `includedProperties=description,price`:
0 commit comments