application ?? null; $name = $this->name ?? null; if (isset($application) && isset($name)) { return "/_security/privilege/$application/$name"; } throw new RuntimeException('Missing parameter for the endpoint security.delete_privileges'); } public function getParamWhitelist(): array { return [ 'refresh' ]; } public function getMethod(): string { return 'DELETE'; } public function setApplication($application): DeletePrivileges { if (isset($application) !== true) { return $this; } $this->application = $application; return $this; } public function setName($name): DeletePrivileges { if (isset($name) !== true) { return $this; } $this->name = $name; return $this; } }