/// <summary>
        /// Initializes any collection properties after deserialization, like next requests for paging.
        /// </summary>
        /// <param name="deviceManagementReportsToInitialize">The <see cref="DeviceManagementReports"/> with the collection properties to initialize.</param>
        private void InitializeCollectionProperties(DeviceManagementReports deviceManagementReportsToInitialize)
        {
            if (deviceManagementReportsToInitialize != null && deviceManagementReportsToInitialize.AdditionalData != null)
            {
                if (deviceManagementReportsToInitialize.CachedReportConfigurations != null && deviceManagementReportsToInitialize.CachedReportConfigurations.CurrentPage != null)
                {
                    deviceManagementReportsToInitialize.CachedReportConfigurations.AdditionalData = deviceManagementReportsToInitialize.AdditionalData;

                    object nextPageLink;
                    deviceManagementReportsToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        deviceManagementReportsToInitialize.CachedReportConfigurations.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }

                if (deviceManagementReportsToInitialize.ExportJobs != null && deviceManagementReportsToInitialize.ExportJobs.CurrentPage != null)
                {
                    deviceManagementReportsToInitialize.ExportJobs.AdditionalData = deviceManagementReportsToInitialize.AdditionalData;

                    object nextPageLink;
                    deviceManagementReportsToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        deviceManagementReportsToInitialize.ExportJobs.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }

                if (deviceManagementReportsToInitialize.ReportSchedules != null && deviceManagementReportsToInitialize.ReportSchedules.CurrentPage != null)
                {
                    deviceManagementReportsToInitialize.ReportSchedules.AdditionalData = deviceManagementReportsToInitialize.AdditionalData;

                    object nextPageLink;
                    deviceManagementReportsToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        deviceManagementReportsToInitialize.ReportSchedules.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }
            }
        }
        /// <summary>
        /// Creates the specified DeviceManagementReports using POST.
        /// </summary>
        /// <param name="deviceManagementReportsToCreate">The DeviceManagementReports to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created DeviceManagementReports.</returns>
        public async System.Threading.Tasks.Task <DeviceManagementReports> CreateAsync(DeviceManagementReports deviceManagementReportsToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <DeviceManagementReports>(deviceManagementReportsToCreate, cancellationToken).ConfigureAwait(false);

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

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }