Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
DeleteCatalogObjectResponse.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\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 array|stdClass */ #[\ReturnTypeWillChange] 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; } }