appBskyVideoGetJobStatus function

Future<XRPCResponse<VideoGetJobStatusOutput>> appBskyVideoGetJobStatus({
  1. required String jobId,
  2. required ServiceContext $ctx,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Get status details for a video processing job.

Implementation

Future<XRPCResponse<VideoGetJobStatusOutput>> appBskyVideoGetJobStatus({
  required String jobId,
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyVideoGetJobStatus,
  service: $service,
  headers: $headers,
  parameters: {...?$unknown, 'jobId': jobId},
  to: const VideoGetJobStatusOutputConverter().fromJson,
);