/// <summary> /// Creates the specified AgedAccountsReceivable using POST. /// </summary> /// <param name="agedAccountsReceivableToCreate">The AgedAccountsReceivable to create.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created AgedAccountsReceivable.</returns> public async System.Threading.Tasks.Task <AgedAccountsReceivable> CreateAsync(AgedAccountsReceivable agedAccountsReceivableToCreate, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; var newEntity = await this.SendAsync <AgedAccountsReceivable>(agedAccountsReceivableToCreate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(newEntity); return(newEntity); }
/// <summary> /// Creates the specified AgedAccountsReceivable using POST. /// </summary> /// <param name="agedAccountsReceivableToCreate">The AgedAccountsReceivable to create.</param> /// <returns>The created AgedAccountsReceivable.</returns> public System.Threading.Tasks.Task <AgedAccountsReceivable> CreateAsync(AgedAccountsReceivable agedAccountsReceivableToCreate) { return(this.CreateAsync(agedAccountsReceivableToCreate, CancellationToken.None)); }
/// <summary> /// Updates the specified AgedAccountsReceivable using PATCH. /// </summary> /// <param name="agedAccountsReceivableToUpdate">The AgedAccountsReceivable 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 AgedAccountsReceivable.</returns> public async System.Threading.Tasks.Task <AgedAccountsReceivable> UpdateAsync(AgedAccountsReceivable agedAccountsReceivableToUpdate, CancellationToken cancellationToken) { if (agedAccountsReceivableToUpdate.AdditionalData != null) { if (agedAccountsReceivableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || agedAccountsReceivableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, agedAccountsReceivableToUpdate.GetType().Name) }); } } if (agedAccountsReceivableToUpdate.AdditionalData != null) { if (agedAccountsReceivableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || agedAccountsReceivableToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, agedAccountsReceivableToUpdate.GetType().Name) }); } } this.ContentType = "application/json"; this.Method = "PATCH"; var updatedEntity = await this.SendAsync <AgedAccountsReceivable>(agedAccountsReceivableToUpdate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(updatedEntity); return(updatedEntity); }
/// <summary> /// Initializes any collection properties after deserialization, like next requests for paging. /// </summary> /// <param name="agedAccountsReceivableToInitialize">The <see cref="AgedAccountsReceivable"/> with the collection properties to initialize.</param> private void InitializeCollectionProperties(AgedAccountsReceivable agedAccountsReceivableToInitialize) { }
/// <summary> /// Adds the specified AgedAccountsReceivable to the collection via POST. /// </summary> /// <param name="agedAccountsReceivable">The AgedAccountsReceivable to add.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created AgedAccountsReceivable.</returns> public System.Threading.Tasks.Task <AgedAccountsReceivable> AddAsync(AgedAccountsReceivable agedAccountsReceivable, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; return(this.SendAsync <AgedAccountsReceivable>(agedAccountsReceivable, cancellationToken)); }