UNPKG

@microsoft/msgraph-beta-sdk-groups

Version:
64 lines 2.83 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createChatMessageFromDiscriminatorValue, serializeChatMessage } 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 {ReplyWithQuotePostRequestBody} */ // @ts-ignore export function createReplyWithQuotePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoReplyWithQuotePostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoReplyWithQuotePostRequestBody(replyWithQuotePostRequestBody = {}) { return { "backingStoreEnabled": n => { replyWithQuotePostRequestBody.backingStoreEnabled = true; }, "messageIds": n => { replyWithQuotePostRequestBody.messageIds = n.getCollectionOfPrimitiveValues(); }, "replyMessage": n => { replyWithQuotePostRequestBody.replyMessage = n.getObjectValue(createChatMessageFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeReplyWithQuotePostRequestBody(writer, replyWithQuotePostRequestBody = {}) { if (replyWithQuotePostRequestBody) { writer.writeCollectionOfPrimitiveValues("messageIds", replyWithQuotePostRequestBody.messageIds); writer.writeObjectValue("replyMessage", replyWithQuotePostRequestBody.replyMessage, serializeChatMessage); writer.writeAdditionalData(replyWithQuotePostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const ReplyWithQuoteRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/replyWithQuote"; /** * Metadata for all the requests in the request builder. */ export const ReplyWithQuoteRequestBuilderRequestsMetadata = { post: { uriTemplate: ReplyWithQuoteRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createChatMessageFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeReplyWithQuotePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map