whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/square/square/src/Models/UpdateItemModifierListsRequest.php
<?php declare(strict_types=1); namespace Square\Models; use stdClass; class UpdateItemModifierListsRequest implements \JsonSerializable { /** * @var string[] */ private $itemIds; /** * @var string[]|null */ private $modifierListsToEnable; /** * @var string[]|null */ private $modifierListsToDisable; /** * @param string[] $itemIds */ public function __construct(array $itemIds) { $this->itemIds = $itemIds; } /** * Returns Item Ids. * * The IDs of the catalog items associated with the CatalogModifierList objects being updated. * * @return string[] */ public function getItemIds(): array { return $this->itemIds; } /** * Sets Item Ids. * * The IDs of the catalog items associated with the CatalogModifierList objects being updated. * * @required * @maps item_ids * * @param string[] $itemIds */ public function setItemIds(array $itemIds): void { $this->itemIds = $itemIds; } /** * Returns Modifier Lists to Enable. * * The IDs of the CatalogModifierList objects to enable for the CatalogItem. * * @return string[]|null */ public function getModifierListsToEnable(): ?array { return $this->modifierListsToEnable; } /** * Sets Modifier Lists to Enable. * * The IDs of the CatalogModifierList objects to enable for the CatalogItem. * * @maps modifier_lists_to_enable * * @param string[]|null $modifierListsToEnable */ public function setModifierListsToEnable(?array $modifierListsToEnable): void { $this->modifierListsToEnable = $modifierListsToEnable; } /** * Returns Modifier Lists to Disable. * * The IDs of the CatalogModifierList objects to disable for the CatalogItem. * * @return string[]|null */ public function getModifierListsToDisable(): ?array { return $this->modifierListsToDisable; } /** * Sets Modifier Lists to Disable. * * The IDs of the CatalogModifierList objects to disable for the CatalogItem. * * @maps modifier_lists_to_disable * * @param string[]|null $modifierListsToDisable */ public function setModifierListsToDisable(?array $modifierListsToDisable): void { $this->modifierListsToDisable = $modifierListsToDisable; } /** * 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['item_ids'] = $this->itemIds; if (isset($this->modifierListsToEnable)) { $json['modifier_lists_to_enable'] = $this->modifierListsToEnable; } if (isset($this->modifierListsToDisable)) { $json['modifier_lists_to_disable'] = $this->modifierListsToDisable; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }
Copyright ©2021 || Defacer Indonesia