Skip to content

Commit ed3a607

Browse files
committed
- catch up with java 1.79
1 parent 5187dc4 commit ed3a607

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

src/objects/Product.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,28 @@ class Product
296296
*/
297297
public $isEligibleForTradeIn = false;
298298

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+
299321
/**
300322
* Whether or not the product is eligible for super saver shipping by Amazon (not FBA).
301323
* @var bool

0 commit comments

Comments
 (0)