_account_number; } /** * Устанавливает номер банковского счета. * * @param string|null $account_number Номер банковского счета. * * @return self */ public function setAccountNumber(?string $account_number = null): self { $this->_account_number = $this->validatePropertyValue('_account_number', $account_number); return $this; } /** * Возвращает БИК. * * @return string|null */ public function getBic(): ?string { return $this->_bic; } /** * Устанавливает БИК. * * @param string|null $bic Банковский идентификационный код (БИК) банка, в котором открыт счет. * * @return self */ public function setBic(?string $bic = null): self { $this->_bic = $this->validatePropertyValue('_bic', $bic); return $this; } }