UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
66 lines 3.05 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createProcessContentRequestFromDiscriminatorValue, createProcessContentResponseFromDiscriminatorValue, serializeProcessContentRequest } 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 {ProcessContentPostRequestBody} */ // @ts-ignore export function createProcessContentPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoProcessContentPostRequestBody; } /** * The deserialization information for the current model * @param ProcessContentPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoProcessContentPostRequestBody(processContentPostRequestBody = {}) { return { "backingStoreEnabled": n => { processContentPostRequestBody.backingStoreEnabled = true; }, "contentToProcess": n => { processContentPostRequestBody.contentToProcess = n.getObjectValue(createProcessContentRequestFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param ProcessContentPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeProcessContentPostRequestBody(writer, processContentPostRequestBody = {}, isSerializingDerivedType = false) { if (!processContentPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("contentToProcess", processContentPostRequestBody.contentToProcess, serializeProcessContentRequest); writer.writeAdditionalData(processContentPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ProcessContentRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/dataSecurityAndGovernance/processContent"; /** * Metadata for all the requests in the request builder. */ export const ProcessContentRequestBuilderRequestsMetadata = { post: { uriTemplate: ProcessContentRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createProcessContentResponseFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeProcessContentPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map