File "CustomField.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/CustomField.php
File size: 1.54 KB
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}