transform_id ?? null; if (isset($transform_id)) { return "/_transform/$transform_id"; } throw new RuntimeException('Missing parameter for the endpoint transform.delete_transform'); } public function getParamWhitelist(): array { return [ 'force' ]; } public function getMethod(): string { return 'DELETE'; } public function setTransformId($transform_id): DeleteTransform { if (isset($transform_id) !== true) { return $this; } $this->transform_id = $transform_id; return $this; } }