Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
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 BatchDeleteCatalogObjectsRequest implements \JsonSerializable { /** * @var array */ private $objectIds = []; /** * Returns Object Ids. * The IDs of the CatalogObjects to be deleted. When an object is deleted, other objects * in the graph that depend on that object will be deleted as well (for example, deleting a * CatalogItem will delete its CatalogItemVariation. * * @return string[]|null */ public function getObjectIds() : ?array { if (\count($this->objectIds) == 0) { return null; } return $this->objectIds['value']; } /** * Sets Object Ids. * The IDs of the CatalogObjects to be deleted. When an object is deleted, other objects * in the graph that depend on that object will be deleted as well (for example, deleting a * CatalogItem will delete its CatalogItemVariation. * * @maps object_ids * * @param string[]|null $objectIds */ public function setObjectIds(?array $objectIds) : void { $this->objectIds['value'] = $objectIds; } /** * Unsets Object Ids. * The IDs of the CatalogObjects to be deleted. When an object is deleted, other objects * in the graph that depend on that object will be deleted as well (for example, deleting a * CatalogItem will delete its CatalogItemVariation. */ public function unsetObjectIds() : void { $this->objectIds = []; } /** * 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 (!empty($this->objectIds)) { $json['object_ids'] = $this->objectIds['value']; } $json = \array_filter($json, function ($val) { return $val !== null; }); return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json; } }