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