/// <summary>
        /// Updates the specified LicenseDetails using PATCH.
        /// </summary>
        /// <param name="licenseDetailsToUpdate">The LicenseDetails 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 LicenseDetails.</returns>
        public async System.Threading.Tasks.Task <LicenseDetails> UpdateAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken)
        {
            if (licenseDetailsToUpdate.AdditionalData != null)
            {
                if (licenseDetailsToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    licenseDetailsToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, licenseDetailsToUpdate.GetType().Name)
                    });
                }
            }
            if (licenseDetailsToUpdate.AdditionalData != null)
            {
                if (licenseDetailsToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    licenseDetailsToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, licenseDetailsToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <LicenseDetails>(licenseDetailsToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
        /// <summary>
        /// Creates the specified LicenseDetails using POST.
        /// </summary>
        /// <param name="licenseDetailsToCreate">The LicenseDetails to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created LicenseDetails.</returns>
        public async System.Threading.Tasks.Task <LicenseDetails> CreateAsync(LicenseDetails licenseDetailsToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <LicenseDetails>(licenseDetailsToCreate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified LicenseDetails using POST.
 /// </summary>
 /// <param name="licenseDetailsToCreate">The LicenseDetails to create.</param>
 /// <returns>The created LicenseDetails.</returns>
 public System.Threading.Tasks.Task <LicenseDetails> CreateAsync(LicenseDetails licenseDetailsToCreate)
 {
     return(this.CreateAsync(licenseDetailsToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="licenseDetailsToInitialize">The <see cref="LicenseDetails"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(LicenseDetails licenseDetailsToInitialize)
 {
 }
 /// <summary>
 /// Adds the specified LicenseDetails to the collection via POST.
 /// </summary>
 /// <param name="licenseDetails">The LicenseDetails to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created LicenseDetails.</returns>
 public System.Threading.Tasks.Task <LicenseDetails> AddAsync(LicenseDetails licenseDetails, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <LicenseDetails>(licenseDetails, cancellationToken));
 }
 /// <summary>
 /// Adds the specified LicenseDetails to the collection via POST.
 /// </summary>
 /// <param name="licenseDetails">The LicenseDetails to add.</param>
 /// <returns>The created LicenseDetails.</returns>
 public System.Threading.Tasks.Task <LicenseDetails> AddAsync(LicenseDetails licenseDetails)
 {
     return(this.AddAsync(licenseDetails, CancellationToken.None));
 }