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/objects/Product.php
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -296,6 +296,28 @@ class Product
296
296
*/
297
297
public$isEligibleForTradeIn = false;
298
298
299
+
300
+
/**
301
+
* The referral fee percent, null if not available.
302
+
* Example: 12
303
+
* @var int|null
304
+
*/
305
+
public$referralFeePercent = null;
306
+
307
+
/**
308
+
* States the last time we have updated the monthlySold field, in Keepa Time minutes. Undefined if the monthlySold has no value.
309
+
* Use {@link KeepaTime#keepaMinuteToUnixInMillis(int)} (long)} to get an uncompressed timestamp (Unix epoch time).
310
+
* @var int|null
311
+
*/
312
+
public$lastSoldUpdate = null;
313
+
314
+
/**
315
+
* How often this product was bought in the past month. This field represents the bought past month metric found on Amazon search result pages. It is not an estimate. Undefined if it has no value. Most ASINs do not have this value set. The value is variation specific.
316
+
* Example: 1000 - the ASIN was bought at least 1000 times in the past month.
317
+
* @var int|null
318
+
*/
319
+
public$monthlySold = null;
320
+
299
321
/**
300
322
* Whether or not the product is eligible for super saver shipping by Amazon (not FBA).
0 commit comments