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
/
OrderSource.php
/
/
<?php namespace Square\Types; use Square\Core\Json\JsonSerializableType; use Square\Core\Json\JsonProperty; /** * Represents the origination details of an order. */ class OrderSource extends JsonSerializableType { /** * The name used to identify the place (physical or digital) that an order originates. * If unset, the name defaults to the name of the application that created the order. * * @var ?string $name */ #[JsonProperty('name')] private ?string $name; /** * @param array{ * name?: ?string, * } $values */ public function __construct( array $values = [], ) { $this->name = $values['name'] ?? null; } /** * @return ?string */ public function getName(): ?string { return $this->name; } /** * @param ?string $value */ public function setName(?string $value = null): self { $this->name = $value; return $this; } /** * @return string */ public function __toString(): string { return $this->toJson(); } }
/home/batcwwjx/www/wp-content/plugins/./charitable/vendor/./square/square/src/Types/OrderSource.php