UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
54 lines 2.49 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-beta-sdk/models/oDataErrors/index.js'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {PauseConfigurationRefreshPostRequestBody} */ export function createPauseConfigurationRefreshPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoPauseConfigurationRefreshPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ export function deserializeIntoPauseConfigurationRefreshPostRequestBody(pauseConfigurationRefreshPostRequestBody = {}) { return { "backingStoreEnabled": n => { pauseConfigurationRefreshPostRequestBody.backingStoreEnabled = true; }, "pauseTimePeriodInMinutes": n => { pauseConfigurationRefreshPostRequestBody.pauseTimePeriodInMinutes = n.getNumberValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export function serializePauseConfigurationRefreshPostRequestBody(writer, pauseConfigurationRefreshPostRequestBody = {}) { writer.writeNumberValue("pauseTimePeriodInMinutes", pauseConfigurationRefreshPostRequestBody.pauseTimePeriodInMinutes); writer.writeAdditionalData(pauseConfigurationRefreshPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const PauseConfigurationRefreshRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/pauseConfigurationRefresh"; /** * Metadata for all the requests in the request builder. */ export const PauseConfigurationRefreshRequestBuilderRequestsMetadata = { post: { uriTemplate: PauseConfigurationRefreshRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializePauseConfigurationRefreshPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map