UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
67 lines 3.02 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 {EnableLostModePostRequestBody} */ // @ts-ignore export function createEnableLostModePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoEnableLostModePostRequestBody; } /** * The deserialization information for the current model * @param EnableLostModePostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoEnableLostModePostRequestBody(enableLostModePostRequestBody = {}) { return { "backingStoreEnabled": n => { enableLostModePostRequestBody.backingStoreEnabled = true; }, "footer": n => { enableLostModePostRequestBody.footer = n.getStringValue(); }, "message": n => { enableLostModePostRequestBody.message = n.getStringValue(); }, "phoneNumber": n => { enableLostModePostRequestBody.phoneNumber = n.getStringValue(); }, }; } /** * Serializes information the current object * @param EnableLostModePostRequestBody The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeEnableLostModePostRequestBody(writer, enableLostModePostRequestBody = {}, isSerializingDerivedType = false) { if (!enableLostModePostRequestBody || isSerializingDerivedType) { return; } writer.writeStringValue("footer", enableLostModePostRequestBody.footer); writer.writeStringValue("message", enableLostModePostRequestBody.message); writer.writeStringValue("phoneNumber", enableLostModePostRequestBody.phoneNumber); writer.writeAdditionalData(enableLostModePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const EnableLostModeRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/comanagedDevices/{managedDevice%2Did}/enableLostMode"; /** * Metadata for all the requests in the request builder. */ export const EnableLostModeRequestBuilderRequestsMetadata = { post: { uriTemplate: EnableLostModeRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeEnableLostModePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map