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