= 2.11.0 that * sends all_services and child_options in a single request */ class ApiScheduleHostDowntimeCommand extends ScheduleHostDowntimeCommand { /** @var int Whether no, triggered, or non-triggered child downtimes should be scheduled */ protected $childOptions; protected $forAllServicesNative = true; /** * Get child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled * * @return int */ public function getChildOptions() { return $this->childOptions; } /** * Set child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled * * @param int $childOptions * * @return $this */ public function setChildOptions($childOptions) { $this->childOptions = $childOptions; return $this; } }