name ?? null; if (isset($name)) { return "/_ccr/auto_follow/$name"; } throw new RuntimeException('Missing parameter for the endpoint ccr.delete_auto_follow_pattern'); } public function getParamWhitelist(): array { return []; } public function getMethod(): string { return 'DELETE'; } public function setName($name): DeleteAutoFollowPattern { if (isset($name) !== true) { return $this; } $this->name = $name; return $this; } }