finishUpload method

Future<XRPCResponse<VideoFinishUploadOutput>> finishUpload({
  1. required String jobId,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);