setType(RefundMethodType::SBP); } /** * Возвращает sbp_operation_id. * * @return string|null */ public function getSbpOperationId(): ?string { return $this->_sbp_operation_id; } /** * Устанавливает sbp_operation_id. * * @param string|null $sbp_operation_id Идентификатор операции в СБП (НСПК). * * @return self */ public function setSbpOperationId(?string $sbp_operation_id = null): self { $this->_sbp_operation_id = $this->validatePropertyValue('_sbp_operation_id', $sbp_operation_id); return $this; } }