JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr_type; } /** * Устанавливает вид оплаты в чеке. * * @param string|null $type * * @return self */ public function setType(?string $type = null): self { $this->_type = $this->validatePropertyValue('_type', $type); return $this; } /** * Возвращает размер оплаты. * * @return AmountInterface|null Размер оплаты */ public function getAmount(): ?AmountInterface { return $this->_amount; } /** * Устанавливает сумму, на которую необходимо уменьшить вознаграждение продавца. * Должна быть меньше суммы возврата или равна ей. * * @param AmountInterface|array|null $amount Сумма платежа * * @return self */ public function setAmount(mixed $amount = null): self { $this->_amount = $this->validatePropertyValue('_amount', $amount); return $this; } }