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