whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/square/square/src/Models/BatchRetrieveCatalogObjectsRequest.php
<?php declare(strict_types=1); namespace Square\Models; use stdClass; class BatchRetrieveCatalogObjectsRequest implements \JsonSerializable { /** * @var string[] */ private $objectIds; /** * @var bool|null */ private $includeRelatedObjects; /** * @var int|null */ private $catalogVersion; /** * @param string[] $objectIds */ public function __construct(array $objectIds) { $this->objectIds = $objectIds; } /** * Returns Object Ids. * * The IDs of the CatalogObjects to be retrieved. * * @return string[] */ public function getObjectIds(): array { return $this->objectIds; } /** * Sets Object Ids. * * The IDs of the CatalogObjects to be retrieved. * * @required * @maps object_ids * * @param string[] $objectIds */ public function setObjectIds(array $objectIds): void { $this->objectIds = $objectIds; } /** * Returns Include Related Objects. * * If `true`, the response will include additional objects that are related to the * requested objects, as follows: * * If the `objects` field of the response contains a CatalogItem, its associated * CatalogCategory objects, CatalogTax objects, CatalogImage objects and * CatalogModifierLists will be returned in the `related_objects` field of the * response. If the `objects` field of the response contains a CatalogItemVariation, * its parent CatalogItem will be returned in the `related_objects` field of * the response. */ public function getIncludeRelatedObjects(): ?bool { return $this->includeRelatedObjects; } /** * Sets Include Related Objects. * * If `true`, the response will include additional objects that are related to the * requested objects, as follows: * * If the `objects` field of the response contains a CatalogItem, its associated * CatalogCategory objects, CatalogTax objects, CatalogImage objects and * CatalogModifierLists will be returned in the `related_objects` field of the * response. If the `objects` field of the response contains a CatalogItemVariation, * its parent CatalogItem will be returned in the `related_objects` field of * the response. * * @maps include_related_objects */ public function setIncludeRelatedObjects(?bool $includeRelatedObjects): void { $this->includeRelatedObjects = $includeRelatedObjects; } /** * Returns Catalog Version. * * The specific version of the catalog objects to be included in the response. * This allows you to retrieve historical versions of objects. The specified version value is matched * against * the [CatalogObject]($m/CatalogObject)s' `version` attribute. */ public function getCatalogVersion(): ?int { return $this->catalogVersion; } /** * Sets Catalog Version. * * The specific version of the catalog objects to be included in the response. * This allows you to retrieve historical versions of objects. The specified version value is matched * against * the [CatalogObject]($m/CatalogObject)s' `version` attribute. * * @maps catalog_version */ public function setCatalogVersion(?int $catalogVersion): void { $this->catalogVersion = $catalogVersion; } /** * 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 = []; $json['object_ids'] = $this->objectIds; if (isset($this->includeRelatedObjects)) { $json['include_related_objects'] = $this->includeRelatedObjects; } if (isset($this->catalogVersion)) { $json['catalog_version'] = $this->catalogVersion; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }
Copyright ©2021 || Defacer Indonesia