Example #1
0
 /// <summary>
 /// Mark Shift Notes Read
 /// </summary>
 /// <remarks>
 /// Marks some shift notes as either read or unread.
 /// </remarks>
 public void MarkShiftNotesRead(int businessId, MarkNotesReadViewModel model, string kioskId, string shiftId)
 {
     ApiRequest($"/business/{businessId}/kiosk/{kioskId}/shift/{shiftId}/notes/read-state", model, Method.POST);
 }
Example #2
0
 /// <summary>
 /// Mark Shift Notes Read
 /// </summary>
 /// <remarks>
 /// Marks some shift notes as either read or unread.
 /// </remarks>
 public Task MarkShiftNotesReadAsync(int businessId, MarkNotesReadViewModel model, string kioskId, string shiftId, CancellationToken cancellationToken = default)
 {
     return ApiRequestAsync($"/business/{businessId}/kiosk/{kioskId}/shift/{shiftId}/notes/read-state", model, Method.POST, cancellationToken);
 }
Example #3
0
 public HttpResponseMessage MarkNotesRead(int businessId, int kioskId, int shiftId, MarkNotesReadViewModel model)
 {
     return(ApiRequest <HttpResponseMessage, MarkNotesReadViewModel>($"/business/{businessId}/manager/kiosk/{kioskId}/shift/{shiftId}/notes/read-state", model, Method.POST));
 }