cancelExportJob method
Cancels an export job.
May throw BadRequestException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter jobId :
The export job ID.
Implementation
Future<void> cancelExportJob({
required String jobId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'PUT',
requestUri: '/v2/email/export-jobs/${Uri.encodeComponent(jobId)}/cancel',
exceptionFnMap: _exceptionFns,
);
}