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