%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
use stdClass;
/**
* A mapping between a temporary client-supplied ID and a permanent server-generated ID.
*
* When calling [UpsertCatalogObject]($e/Catalog/UpsertCatalogObject) or
* [BatchUpsertCatalogObjects]($e/Catalog/BatchUpsertCatalogObjects) to
* create a [CatalogObject]($m/CatalogObject) instance, you can supply
* a temporary ID for the to-be-created object, especially when the object is to be referenced
* elsewhere in the same request body. This temporary ID can be any string unique within
* the call, but must be prefixed by "#".
*
* After the request is submitted and the object created, a permanent server-generated ID is assigned
* to the new object. The permanent ID is unique across the Square catalog.
*/
class CatalogIdMapping implements \JsonSerializable
{
/**
* @var string|null
*/
private $clientObjectId;
/**
* @var string|null
*/
private $objectId;
/**
* Returns Client Object Id.
*
* The client-supplied temporary `#`-prefixed ID for a new `CatalogObject`.
*/
public function getClientObjectId(): ?string
{
return $this->clientObjectId;
}
/**
* Sets Client Object Id.
*
* The client-supplied temporary `#`-prefixed ID for a new `CatalogObject`.
*
* @maps client_object_id
*/
public function setClientObjectId(?string $clientObjectId): void
{
$this->clientObjectId = $clientObjectId;
}
/**
* Returns Object Id.
*
* The permanent ID for the CatalogObject created by the server.
*/
public function getObjectId(): ?string
{
return $this->objectId;
}
/**
* Sets Object Id.
*
* The permanent ID for the CatalogObject created by the server.
*
* @maps object_id
*/
public function setObjectId(?string $objectId): void
{
$this->objectId = $objectId;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return mixed
*/
public function jsonSerialize(bool $asArrayWhenEmpty = false)
{
$json = [];
if (isset($this->clientObjectId)) {
$json['client_object_id'] = $this->clientObjectId;
}
if (isset($this->objectId)) {
$json['object_id'] = $this->objectId;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}