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