/// <summary> /// Updates the specified AgedAccountsPayable using PATCH. /// </summary> /// <param name="agedAccountsPayableToUpdate">The AgedAccountsPayable to update.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <exception cref="ClientException">Thrown when an object returned in a response is used for updating an object in Microsoft Graph.</exception> /// <returns>The updated AgedAccountsPayable.</returns> public async System.Threading.Tasks.Task <AgedAccountsPayable> UpdateAsync(AgedAccountsPayable agedAccountsPayableToUpdate, CancellationToken cancellationToken) { if (agedAccountsPayableToUpdate.AdditionalData != null) { if (agedAccountsPayableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || agedAccountsPayableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, agedAccountsPayableToUpdate.GetType().Name) }); } } if (agedAccountsPayableToUpdate.AdditionalData != null) { if (agedAccountsPayableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || agedAccountsPayableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, agedAccountsPayableToUpdate.GetType().Name) }); } } this.ContentType = "application/json"; this.Method = "PATCH"; var updatedEntity = await this.SendAsync <AgedAccountsPayable>(agedAccountsPayableToUpdate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(updatedEntity); return(updatedEntity); }