commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SearchDateRangeValue.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 use DateTimeImmutable;
14 
16 {
17  public const FIELD_GTE = 'gte';
18  public const FIELD_GT = 'gt';
19  public const FIELD_LTE = 'lte';
20  public const FIELD_LT = 'lt';
21 
26  public function getGte();
27 
32  public function getGt();
33 
38  public function getLte();
39 
44  public function getLt();
45 
49  public function setGte(?DateTimeImmutable $gte): void;
50 
54  public function setGt(?DateTimeImmutable $gt): void;
55 
59  public function setLte(?DateTimeImmutable $lte): void;
60 
64  public function setLt(?DateTimeImmutable $lt): void;
65 }