getVariantImportJob method

Future<GetVariantImportResponse> getVariantImportJob({
  1. required String jobId,
})
Gets information about a variant import job.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter jobId : The job's ID.

Implementation

Future<GetVariantImportResponse> getVariantImportJob({
  required String jobId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/import/variant/${Uri.encodeComponent(jobId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetVariantImportResponse.fromJson(response);
}