commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SearchPrefixExpressionModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
26  protected $prefix;
27 
28 
32  public function __construct(
33  ?SearchAnyValue $prefix = null
34  ) {
35  $this->prefix = $prefix;
36  }
37 
42  public function getPrefix()
43  {
44  if (is_null($this->prefix)) {
46  $data = $this->raw(self::FIELD_PREFIX);
47  if (is_null($data)) {
48  return null;
49  }
50 
51  $this->prefix = SearchAnyValueModel::of($data);
52  }
53 
54  return $this->prefix;
55  }
56 
57 
61  public function setPrefix(?SearchAnyValue $prefix): void
62  {
63  $this->prefix = $prefix;
64  }
65 }