UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
66 lines 2.81 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createPrivilegeManagementElevationRequestFromDiscriminatorValue } from '@microsoft/msgraph-beta-sdk/models/index.js'; // @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 {RevokePostRequestBody} */ // @ts-ignore export function createRevokePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoRevokePostRequestBody; } /** * The deserialization information for the current model * @param RevokePostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoRevokePostRequestBody(revokePostRequestBody = {}) { return { "backingStoreEnabled": n => { revokePostRequestBody.backingStoreEnabled = true; }, "reviewerJustification": n => { revokePostRequestBody.reviewerJustification = n.getStringValue(); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param RevokePostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeRevokePostRequestBody(writer, revokePostRequestBody = {}, isSerializingDerivedType = false) { if (!revokePostRequestBody || isSerializingDerivedType) { return; } writer.writeStringValue("reviewerJustification", revokePostRequestBody.reviewerJustification); writer.writeAdditionalData(revokePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const RevokeRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/elevationRequests/{privilegeManagementElevationRequest%2Did}/revoke"; /** * Metadata for all the requests in the request builder. */ export const RevokeRequestBuilderRequestsMetadata = { post: { uriTemplate: RevokeRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createPrivilegeManagementElevationRequestFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeRevokePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map