/// <summary> /// Set Pay Run Notation /// </summary> /// <remarks> /// Sets the notation for this pay run. The pay run notation is the message that is shown on all pay slips for this pay run. /// </remarks> public Task SetPayRunNotationAsync(int businessId, int payRunId, PayRunNotationModel model, CancellationToken cancellationToken = default) { return(ApiRequestAsync($"/business/{businessId}/payrun/{payRunId}/notation", model, Method.POST, cancellationToken)); }
/// <summary> /// Set Pay Run Notation /// </summary> /// <remarks> /// Sets the notation for this pay run. The pay run notation is the message that is shown on all pay slips for this pay run. /// </remarks> public void SetPayRunNotation(int businessId, int payRunId, PayRunNotationModel model) { ApiRequest($"/business/{businessId}/payrun/{payRunId}/notation", model, Method.POST); }