getJobWithHttpInfo method
Get job status
Get the status and details of a specific validation job.
Note: This method returns the HTTP Response.
Parameters:
- String jobId (required):
Implementation
Future<Response> getJobWithHttpInfo(String jobId,) async {
// ignore: prefer_const_declarations
final path = r'/v1/jobs/{job_id}'
.replaceAll('{job_id}', jobId);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}