3 declare(strict_types=1);
71 if (is_null($this->centAmount)) {
73 $data = $this->
raw(self::FIELD_CENT_AMOUNT);
77 $this->centAmount = (int) $data;
91 if (is_null($this->currencyCode)) {
93 $data = $this->
raw(self::FIELD_CURRENCY_CODE);
97 $this->currencyCode = (string) $data;
111 if (is_null($this->type)) {
113 $data = $this->
raw(self::FIELD_TYPE);
114 if (is_null($data)) {
117 $this->type = (string) $data;
131 if (is_null($this->fractionDigits)) {
133 $data = $this->
raw(self::FIELD_FRACTION_DIGITS);
134 if (is_null($data)) {
137 $this->fractionDigits = (int) $data;