Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
CustomField.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; /** * Describes a custom form field to add to the checkout page to collect more information from buyers * during checkout. * For more information, * see [Specify checkout options](https://developer.squareup.com/docs/checkout-api/optional-checkout- * configurations#specify-checkout-options-1). */ class CustomField implements \JsonSerializable { /** * @var string */ private $title; /** * @param string $title */ public function __construct(string $title) { $this->title = $title; } /** * Returns Title. * The title of the custom field. */ public function getTitle() : string { return $this->title; } /** * Sets Title. * The title of the custom field. * * @required * @maps title */ public function setTitle(string $title) : void { $this->title = $title; } /** * 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 = []; $json['title'] = $this->title; $json = \array_filter($json, function ($val) { return $val !== null; }); return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json; } }