1: <?php
2: /**
3: * Product query object.
4: *
5: * @package RestApi.Objects
6: * @author Konstantinos Filios <konfilios@gmail.com>
7: */
8: class ProductQueryJson extends CBJsonModel
9: {
10: /**
11: * Minimum product price filter.
12: * @var double
13: */
14: public $filterMinPrice;
15:
16: /**
17: * Limit results.
18: * @var integer
19: */
20: public $resultsLimit;
21:
22: /**
23: * Column to order results.
24: * @var string
25: */
26: public $resultsOrderBy;
27: }
28: