UNPKG

@microsoft/msgraph-sdk-groups

Version:
63 lines 2.63 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-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; } /** * The deserialization information for the current model * @param ArchivePostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoArchivePostRequestBody(archivePostRequestBody = {}) { return { "backingStoreEnabled": n => { archivePostRequestBody.backingStoreEnabled = true; }, "shouldSetSpoSiteReadOnlyForMembers": n => { archivePostRequestBody.shouldSetSpoSiteReadOnlyForMembers = n.getBooleanValue(); }, }; } /** * Serializes information the current object * @param ArchivePostRequestBody 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 serializeArchivePostRequestBody(writer, archivePostRequestBody = {}, isSerializingDerivedType = false) { if (!archivePostRequestBody || isSerializingDerivedType) { return; } writer.writeBooleanValue("shouldSetSpoSiteReadOnlyForMembers", archivePostRequestBody.shouldSetSpoSiteReadOnlyForMembers); writer.writeAdditionalData(archivePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ArchiveRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/team/primaryChannel/archive"; /** * Metadata for all the requests in the request builder. */ export const ArchiveRequestBuilderRequestsMetadata = { post: { uriTemplate: ArchiveRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeArchivePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map