UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
65 lines 3.4 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 {SendCustomNotificationToCompanyPortalPostRequestBody} */ // @ts-ignore export function createSendCustomNotificationToCompanyPortalPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoSendCustomNotificationToCompanyPortalPostRequestBody; } /** * The deserialization information for the current model * @param SendCustomNotificationToCompanyPortalPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoSendCustomNotificationToCompanyPortalPostRequestBody(sendCustomNotificationToCompanyPortalPostRequestBody = {}) { return { "backingStoreEnabled": n => { sendCustomNotificationToCompanyPortalPostRequestBody.backingStoreEnabled = true; }, "notificationBody": n => { sendCustomNotificationToCompanyPortalPostRequestBody.notificationBody = n.getStringValue(); }, "notificationTitle": n => { sendCustomNotificationToCompanyPortalPostRequestBody.notificationTitle = n.getStringValue(); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param SendCustomNotificationToCompanyPortalPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeSendCustomNotificationToCompanyPortalPostRequestBody(writer, sendCustomNotificationToCompanyPortalPostRequestBody = {}, isSerializingDerivedType = false) { if (!sendCustomNotificationToCompanyPortalPostRequestBody || isSerializingDerivedType) { return; } writer.writeStringValue("notificationBody", sendCustomNotificationToCompanyPortalPostRequestBody.notificationBody); writer.writeStringValue("notificationTitle", sendCustomNotificationToCompanyPortalPostRequestBody.notificationTitle); writer.writeAdditionalData(sendCustomNotificationToCompanyPortalPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const SendCustomNotificationToCompanyPortalRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/comanagedDevices/{managedDevice%2Did}/sendCustomNotificationToCompanyPortal"; /** * Metadata for all the requests in the request builder. */ export const SendCustomNotificationToCompanyPortalRequestBuilderRequestsMetadata = { post: { uriTemplate: SendCustomNotificationToCompanyPortalRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeSendCustomNotificationToCompanyPortalPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map