@microsoft/msgraph-sdk-chats
Version:
Chats fluent API for Microsoft Graph
60 lines • 2.42 kB
JavaScript
/* 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 {HideForUserPostRequestBody}
*/
// @ts-ignore
export function createHideForUserPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoHideForUserPostRequestBody;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoHideForUserPostRequestBody(hideForUserPostRequestBody = {}) {
return {
"backingStoreEnabled": n => { hideForUserPostRequestBody.backingStoreEnabled = true; },
"user": n => { hideForUserPostRequestBody.user = n.getObjectValue(createTeamworkUserIdentityFromDiscriminatorValue); },
};
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeHideForUserPostRequestBody(writer, hideForUserPostRequestBody = {}) {
if (hideForUserPostRequestBody) {
writer.writeObjectValue("user", hideForUserPostRequestBody.user, serializeTeamworkUserIdentity);
writer.writeAdditionalData(hideForUserPostRequestBody.additionalData);
}
}
/**
* Uri template for the request builder.
*/
export const HideForUserRequestBuilderUriTemplate = "{+baseurl}/chats/{chat%2Did}/hideForUser";
/**
* Metadata for all the requests in the request builder.
*/
export const HideForUserRequestBuilderRequestsMetadata = {
post: {
uriTemplate: HideForUserRequestBuilderUriTemplate,
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "sendNoResponseContent",
requestBodyContentType: "application/json",
requestBodySerializer: serializeHideForUserPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map