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/RecommApi/Requests/ItemBasedRecommendation.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ class ItemBasedRecommendation extends Request {
74
74
*/
75
75
protected$return_properties;
76
76
/**
77
-
* @var string $included_properties Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
77
+
* @var array $included_properties Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
78
78
* Example response for `includedProperties=description,price`:
79
79
* ```
80
80
* [
@@ -163,7 +163,7 @@ class ItemBasedRecommendation extends Request {
163
163
* ]
164
164
* ```
165
165
* - *includedProperties*
166
-
* - Type: string
166
+
* - Type: array
167
167
* - Description: Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
168
168
* Example response for `includedProperties=description,price`:
Copy file name to clipboardExpand all lines: src/RecommApi/Requests/UserBasedRecommendation.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ class UserBasedRecommendation extends Request {
66
66
*/
67
67
protected$return_properties;
68
68
/**
69
-
* @var string $included_properties Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
69
+
* @var array $included_properties Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
70
70
* Example response for `includedProperties=description,price`:
71
71
* ```
72
72
* [
@@ -149,7 +149,7 @@ class UserBasedRecommendation extends Request {
149
149
* ]
150
150
* ```
151
151
* - *includedProperties*
152
-
* - Type: string
152
+
* - Type: array
153
153
* - Description: Allows to specify, which properties should be returned when `returnProperties=true` is set. The properties are given as a comma-separated list.
154
154
* Example response for `includedProperties=description,price`:
0 commit comments