3 declare(strict_types=1);
75 if (is_null($this->centAmount)) {
77 $data = $this->
raw(self::FIELD_CENT_AMOUNT);
81 $this->centAmount = (int) $data;
95 if (is_null($this->currencyCode)) {
97 $data = $this->
raw(self::FIELD_CURRENCY_CODE);
101 $this->currencyCode = (string) $data;
115 if (is_null($this->type)) {
117 $data = $this->
raw(self::FIELD_TYPE);
118 if (is_null($data)) {
121 $this->type = (string) $data;
135 if (is_null($this->fractionDigits)) {
137 $data = $this->
raw(self::FIELD_FRACTION_DIGITS);
138 if (is_null($data)) {
141 $this->fractionDigits = (int) $data;