cancelJobRequest

@PUT(value = "/zosmf/restjobs/jobs/{jobname}/{jobid}")
abstract fun cancelJobRequest(    @Header(value = "Authorization") basicCredentials: String,     @Path(value = "jobname") jobName: String,     @Path(value = "jobid") jobId: String,     @Body body: CancelJobRequestBody): Call<CancelJobRequest>
@PUT(value = "/zosmf/restjobs/jobs/{job_correlator}")
abstract fun cancelJobRequest(    @Header(value = "Authorization") basicCredentials: String,     @Path(value = "job-correlator") jobCorrelator: String,     @Body body: CancelJobRequestBody): Call<CancelJobRequest>