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