UNPKG

@microsoft/msgraph-sdk-chats

Version:
65 lines 2.83 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createTeamworkUserIdentityFromDiscriminatorValue, serializeTeamworkUserIdentity } from '@microsoft/msgraph-sdk/models/index.js'; // @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 {UnhideForUserPostRequestBody} */ // @ts-ignore export function createUnhideForUserPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoUnhideForUserPostRequestBody; } /** * The deserialization information for the current model * @param UnhideForUserPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoUnhideForUserPostRequestBody(unhideForUserPostRequestBody = {}) { return { "backingStoreEnabled": n => { unhideForUserPostRequestBody.backingStoreEnabled = true; }, "user": n => { unhideForUserPostRequestBody.user = n.getObjectValue(createTeamworkUserIdentityFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param UnhideForUserPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeUnhideForUserPostRequestBody(writer, unhideForUserPostRequestBody = {}, isSerializingDerivedType = false) { if (!unhideForUserPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("user", unhideForUserPostRequestBody.user, serializeTeamworkUserIdentity); writer.writeAdditionalData(unhideForUserPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const UnhideForUserRequestBuilderUriTemplate = "{+baseurl}/chats/{chat%2Did}/unhideForUser"; /** * Metadata for all the requests in the request builder. */ export const UnhideForUserRequestBuilderRequestsMetadata = { post: { uriTemplate: UnhideForUserRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeUnhideForUserPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map