commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
OrderSearchExactExpressionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $exact;
28
33 public function getExact()
34 {
35 return $this->exact instanceof OrderSearchAnyValueBuilder ? $this->exact->build() : $this->exact;
36 }
37
42 public function withExact(?OrderSearchAnyValue $exact)
43 {
44 $this->exact = $exact;
45
46 return $this;
47 }
48
54 {
55 $this->exact = $exact;
56
57 return $this;
58 }
59
61 {
63 $this->exact instanceof OrderSearchAnyValueBuilder ? $this->exact->build() : $this->exact
64 );
65 }
66
67 public static function of(): OrderSearchExactExpressionBuilder
68 {
69 return new self();
70 }
71}