datafeed_id ?? null; if (isset($datafeed_id)) { return "/_ml/datafeeds/$datafeed_id/_start"; } throw new RuntimeException('Missing parameter for the endpoint ml.start_datafeed'); } public function getParamWhitelist(): array { return [ 'start', 'end', 'timeout' ]; } public function getMethod(): string { return 'POST'; } public function setBody($body): StartDatafeed { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setDatafeedId($datafeed_id): StartDatafeed { if (isset($datafeed_id) !== true) { return $this; } $this->datafeed_id = $datafeed_id; return $this; } }