????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/ |
Upload File : |
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; /** * Represents the snippet that is added to a Square Online site. The snippet code is injected into the * `head` element of all pages on the site, except for checkout pages. */ class Snippet implements \JsonSerializable { /** * @var string|null */ private $id; /** * @var string|null */ private $siteId; /** * @var string */ private $content; /** * @var string|null */ private $createdAt; /** * @var string|null */ private $updatedAt; /** * @param string $content */ public function __construct(string $content) { $this->content = $content; } /** * Returns Id. * The Square-assigned ID for the snippet. */ public function getId() : ?string { return $this->id; } /** * Sets Id. * The Square-assigned ID for the snippet. * * @maps id */ public function setId(?string $id) : void { $this->id = $id; } /** * Returns Site Id. * The ID of the site that contains the snippet. */ public function getSiteId() : ?string { return $this->siteId; } /** * Sets Site Id. * The ID of the site that contains the snippet. * * @maps site_id */ public function setSiteId(?string $siteId) : void { $this->siteId = $siteId; } /** * Returns Content. * The snippet code, which can contain valid HTML, JavaScript, or both. */ public function getContent() : string { return $this->content; } /** * Sets Content. * The snippet code, which can contain valid HTML, JavaScript, or both. * * @required * @maps content */ public function setContent(string $content) : void { $this->content = $content; } /** * Returns Created At. * The timestamp of when the snippet was initially added to the site, in RFC 3339 format. */ public function getCreatedAt() : ?string { return $this->createdAt; } /** * Sets Created At. * The timestamp of when the snippet was initially added to the site, in RFC 3339 format. * * @maps created_at */ public function setCreatedAt(?string $createdAt) : void { $this->createdAt = $createdAt; } /** * Returns Updated At. * The timestamp of when the snippet was last updated on the site, in RFC 3339 format. */ public function getUpdatedAt() : ?string { return $this->updatedAt; } /** * Sets Updated At. * The timestamp of when the snippet was last updated on the site, in RFC 3339 format. * * @maps updated_at */ public function setUpdatedAt(?string $updatedAt) : void { $this->updatedAt = $updatedAt; } /** * 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] public function jsonSerialize(bool $asArrayWhenEmpty = \false) { $json = []; if (isset($this->id)) { $json['id'] = $this->id; } if (isset($this->siteId)) { $json['site_id'] = $this->siteId; } $json['content'] = $this->content; if (isset($this->createdAt)) { $json['created_at'] = $this->createdAt; } if (isset($this->updatedAt)) { $json['updated_at'] = $this->updatedAt; } $json = \array_filter($json, function ($val) { return $val !== null; }); return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json; } }