forAllServices = (bool) $forAllServices; return $this; } /** * Get whether to schedule a downtime for all services associated with a particular host * * @return bool */ public function getForAllServices() { return $this->forAllServices; } /** * Get whether to send the all_services API parameter * * @return bool */ public function isForAllServicesNative() { return $this->forAllServicesNative; } /** * Get whether to send the all_services API parameter * * @param bool $forAllServicesNative * * @return $this */ public function setForAllServicesNative($forAllServicesNative = true) { $this->forAllServicesNative = (bool) $forAllServicesNative; return $this; } }