datafeed_id ?? null; if (isset($datafeed_id)) { return "/_ml/datafeeds/$datafeed_id/_stats"; } return "/_ml/datafeeds/_stats"; } public function getParamWhitelist(): array { return [ 'allow_no_match', 'allow_no_datafeeds' ]; } public function getMethod(): string { return 'GET'; } public function setDatafeedId($datafeed_id): GetDatafeedStats { if (isset($datafeed_id) !== true) { return $this; } $this->datafeed_id = $datafeed_id; return $this; } }