getJobStatus method

Future<XRPCResponse<VideoGetJobStatusOutput>> getJobStatus({
  1. required String jobId,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get status details for a video processing job.

Implementation

Future<XRPCResponse<VideoGetJobStatusOutput>> getJobStatus({
  required String jobId,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyVideoGetJobStatus(
  jobId: jobId,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);