3 declare(strict_types=1);
71 if (is_null($this->type)) {
73 $data = $this->
raw(self::FIELD_TYPE);
77 $this->type = (string) $data;
91 if (is_null($this->minimumCentAmount)) {
93 $data = $this->
raw(self::FIELD_MINIMUM_CENT_AMOUNT);
97 $this->minimumCentAmount = (int) $data;
111 if (is_null($this->price)) {
113 $data = $this->
raw(self::FIELD_PRICE);
114 if (is_null($data)) {
132 if (is_null($this->isMatching)) {
134 $data = $this->
raw(self::FIELD_IS_MATCHING);
135 if (is_null($data)) {
138 $this->isMatching = (bool) $data;