finishUpload method
Finish an upload. This call is idempotent and safe to retry. On deduplication completedJobId may differ from the input jobId; poll getJobStatus with completedJobId. Probe-based validation failures surface later as JOB_STATE_FAILED from getJobStatus, not as errors from this call.
Implementation
Future<XRPCResponse<VideoFinishUploadOutput>> finishUpload({
required String jobId,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyVideoFinishUpload(
jobId: jobId,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);