datafeed_id ?? null; if (isset($datafeed_id)) { return "/_ml/datafeeds/$datafeed_id/_preview"; } return "/_ml/datafeeds/_preview"; } public function getParamWhitelist(): array { return []; } public function getMethod(): string { return isset($this->body) ? 'POST' : 'GET'; } public function setBody($body): PreviewDatafeed { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setDatafeedId($datafeed_id): PreviewDatafeed { if (isset($datafeed_id) !== true) { return $this; } $this->datafeed_id = $datafeed_id; return $this; } }