commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
BusinessUnitSearchResultModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
26 protected $id;
27
32 protected $relevance;
33
34
38 public function __construct(
39 ?string $id = null,
40 ?float $relevance = null
41 ) {
42 $this->id = $id;
43 $this->relevance = $relevance;
44 }
45
52 public function getId()
53 {
54 if (is_null($this->id)) {
56 $data = $this->raw(self::FIELD_ID);
57 if (is_null($data)) {
58 return null;
59 }
60 $this->id = (string) $data;
61 }
62
63 return $this->id;
64 }
65
72 public function getRelevance()
73 {
74 if (is_null($this->relevance)) {
76 $data = $this->raw(self::FIELD_RELEVANCE);
77 if (is_null($data)) {
78 return null;
79 }
80 $this->relevance = (float) $data;
81 }
82
83 return $this->relevance;
84 }
85
86
90 public function setId(?string $id): void
91 {
92 $this->id = $id;
93 }
94
98 public function setRelevance(?float $relevance): void
99 {
100 $this->relevance = $relevance;
101 }
102}