isService = (bool) $value; } /** * Return whether the command affects a service * * @return type */ public function getIsService() { return $this->isService; } /** * Set the ID of the downtime that is to be deleted * * @param int $downtimeId * * @return $this */ public function setDowntimeId($downtimeId) { $this->downtimeId = (int) $downtimeId; return $this; } /** * Get the ID of the downtime that is to be deleted * * @return int */ public function getDowntimeId() { return $this->downtimeId; } }