reason; } /** * Sets Reason. * The reason why the authorized status is `PENDING`. * * @maps reason */ public function setReason(?string $reason): void { $this->reason = $reason; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return array|stdClass */ #[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1) public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; if (isset($this->reason)) { $json['reason'] = AuthorizationIncompleteReason::checkValue($this->reason); } return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }