commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SearchNumberRangeValue.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
15 {
16  public const FIELD_GTE = 'gte';
17  public const FIELD_GT = 'gt';
18  public const FIELD_LTE = 'lte';
19  public const FIELD_LT = 'lt';
20 
25  public function getGte();
26 
31  public function getGt();
32 
37  public function getLte();
38 
43  public function getLt();
44 
48  public function setGte(?float $gte): void;
49 
53  public function setGt(?float $gt): void;
54 
58  public function setLte(?float $lte): void;
59 
63  public function setLt(?float $lt): void;
64 }