uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
.
/
charitable
/
vendor
/
.
/
square
/
square
/
src
/
Types
/
CustomField.php
/
/
<?php namespace Square\Types; use Square\Core\Json\JsonSerializableType; use Square\Core\Json\JsonProperty; /** * 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 extends JsonSerializableType { /** * @var string $title The title of the custom field. */ #[JsonProperty('title')] private string $title; /** * @param array{ * title: string, * } $values */ public function __construct( array $values, ) { $this->title = $values['title']; } /** * @return string */ public function getTitle(): string { return $this->title; } /** * @param string $value */ public function setTitle(string $value): self { $this->title = $value; return $this; } /** * @return string */ public function __toString(): string { return $this->toJson(); } }
/home/batcwwjx/www/wp-content/plugins/./charitable/vendor/./square/square/src/Types/CustomField.php