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