UNPKG

@microsoft/msgraph-beta-sdk-admin

Version:
91 lines 3.47 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 {ArchivePostRequestBody} */ // @ts-ignore export function createArchivePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoArchivePostRequestBody; } /** * 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 {ArchivePostResponse} */ // @ts-ignore export function createArchivePostResponseFromDiscriminatorValue(parseNode) { return deserializeIntoArchivePostResponse; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoArchivePostRequestBody(archivePostRequestBody = {}) { return { "backingStoreEnabled": n => { archivePostRequestBody.backingStoreEnabled = true; }, "messageIds": n => { archivePostRequestBody.messageIds = n.getCollectionOfPrimitiveValues(); }, }; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoArchivePostResponse(archivePostResponse = {}) { return { "backingStoreEnabled": n => { archivePostResponse.backingStoreEnabled = true; }, "value": n => { archivePostResponse.value = n.getBooleanValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeArchivePostRequestBody(writer, archivePostRequestBody = {}) { if (archivePostRequestBody) { writer.writeCollectionOfPrimitiveValues("messageIds", archivePostRequestBody.messageIds); writer.writeAdditionalData(archivePostRequestBody.additionalData); } } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeArchivePostResponse(writer, archivePostResponse = {}) { if (archivePostResponse) { writer.writeBooleanValue("value", archivePostResponse.value); writer.writeAdditionalData(archivePostResponse.additionalData); } } /** * Uri template for the request builder. */ export const ArchiveRequestBuilderUriTemplate = "{+baseurl}/admin/serviceAnnouncement/messages/archive"; /** * Metadata for all the requests in the request builder. */ export const ArchiveRequestBuilderRequestsMetadata = { post: { uriTemplate: ArchiveRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createArchivePostResponseFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeArchivePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map