UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
62 lines 2.67 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createContentInfoFromDiscriminatorValue, createInformationProtectionContentLabelFromDiscriminatorValue, serializeContentInfo } 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 {ExtractLabelPostRequestBody} */ // @ts-ignore export function createExtractLabelPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoExtractLabelPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoExtractLabelPostRequestBody(extractLabelPostRequestBody = {}) { return { "backingStoreEnabled": n => { extractLabelPostRequestBody.backingStoreEnabled = true; }, "contentInfo": n => { extractLabelPostRequestBody.contentInfo = n.getObjectValue(createContentInfoFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeExtractLabelPostRequestBody(writer, extractLabelPostRequestBody = {}) { if (extractLabelPostRequestBody) { writer.writeObjectValue("contentInfo", extractLabelPostRequestBody.contentInfo, serializeContentInfo); writer.writeAdditionalData(extractLabelPostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const ExtractLabelRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/informationProtection/policy/labels/extractLabel"; /** * Metadata for all the requests in the request builder. */ export const ExtractLabelRequestBuilderRequestsMetadata = { post: { uriTemplate: ExtractLabelRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createInformationProtectionContentLabelFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeExtractLabelPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map