calendar_id ?? null; if (isset($calendar_id)) { return "/_ml/calendars/$calendar_id/events"; } throw new RuntimeException('Missing parameter for the endpoint ml.get_calendar_events'); } public function getParamWhitelist(): array { return [ 'job_id', 'start', 'end', 'from', 'size' ]; } public function getMethod(): string { return 'GET'; } public function setCalendarId($calendar_id): GetCalendarEvents { if (isset($calendar_id) !== true) { return $this; } $this->calendar_id = $calendar_id; return $this; } }