getJobStatus method
Implementation
Future<core.XRPCResponse<GetJobStatusOutput>> getJobStatus({
required String jobId,
Map<String, String>? $headers,
}) async =>
await _ctx.get(
service: _videoService,
ns.appBskyVideoGetJobStatus,
headers: $headers,
parameters: {
'jobId': jobId,
},
to: GetJobStatusOutput.fromJson,
);