Ejemplo n.º 1
0
 /// <summary>
 ///     Updates the specified task by ID.
 ///     HTTP Method: patch
 ///     Endpoint: /restapi/{apiVersion}/glip/tasks/{taskId}
 ///     Rate Limit Group: Medium
 /// </summary>
 public async Task <GlipTaskList> Patch(GlipUpdateTask glipUpdateTask, RestRequestConfig restRequestConfig = null)
 {
     if (taskId == null)
     {
         throw new ArgumentException("Parameter cannot be null", nameof(taskId));
     }
     return(await rc.Patch <GlipTaskList>(Path(), glipUpdateTask, null, restRequestConfig));
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Updates the specified task by ID.
 ///     HTTP Method: patch
 ///     Endpoint: /restapi/{apiVersion}/glip/tasks/{taskId}
 ///     Rate Limit Group: Medium
 /// </summary>
 public async Task <GlipTaskList> Patch(GlipUpdateTask glipUpdateTask, RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Patch <GlipTaskList>(Path(), glipUpdateTask, null, restRequestConfig));
 }