getUploadStatus method

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

Get the authoritative status of the upload phase. Terminal states remain readable. completedJobId and jobStatus are present only for completed sessions; failureReason is present only for failed sessions.

Implementation

Future<XRPCResponse<VideoGetUploadStatusOutput>> getUploadStatus({
  required String jobId,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyVideoGetUploadStatus(
  jobId: jobId,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);