ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/SubscriptionEventInfo.php |
<?php declare(strict_types=1); namespace Square\Models; use stdClass; /** * Provides information about the subscription event. */ class SubscriptionEventInfo implements \JsonSerializable { /** * @var string|null */ private $detail; /** * @var string|null */ private $code; /** * Returns Detail. * * A human-readable explanation for the event. */ public function getDetail(): ?string { return $this->detail; } /** * Sets Detail. * * A human-readable explanation for the event. * * @maps detail */ public function setDetail(?string $detail): void { $this->detail = $detail; } /** * Returns Code. * * Supported info codes of a subscription event. */ public function getCode(): ?string { return $this->code; } /** * Sets Code. * * Supported info codes of a subscription event. * * @maps code */ public function setCode(?string $code): void { $this->code = $code; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return mixed */ public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; if (isset($this->detail)) { $json['detail'] = $this->detail; } if (isset($this->code)) { $json['code'] = $this->code; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }