@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
73 lines • 3.74 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createPortalNotificationFromDiscriminatorValue, serializePortalNotification } from '@microsoft/msgraph-beta-sdk/models/deviceManagement/index.js';
// @ts-ignore
import { deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse } 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 {GetPortalNotificationsGetResponse}
*/
// @ts-ignore
export function createGetPortalNotificationsGetResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoGetPortalNotificationsGetResponse;
}
/**
* The deserialization information for the current model
* @param GetPortalNotificationsGetResponse The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoGetPortalNotificationsGetResponse(getPortalNotificationsGetResponse = {}) {
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(getPortalNotificationsGetResponse)), { "value": n => { getPortalNotificationsGetResponse.value = n.getCollectionOfObjectValues(createPortalNotificationFromDiscriminatorValue); } });
}
/**
* Serializes information the current object
* @param GetPortalNotificationsGetResponse 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 serializeGetPortalNotificationsGetResponse(writer, getPortalNotificationsGetResponse = {}, isSerializingDerivedType = false) {
if (!getPortalNotificationsGetResponse || isSerializingDerivedType) {
return;
}
serializeBaseCollectionPaginationCountResponse(writer, getPortalNotificationsGetResponse, isSerializingDerivedType);
writer.writeCollectionOfObjectValues("value", getPortalNotificationsGetResponse.value, serializePortalNotification);
}
/**
* Uri template for the request builder.
*/
export const MicrosoftGraphDeviceManagementGetPortalNotificationsRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/monitoring/alertRecords/microsoft.graph.deviceManagement.getPortalNotifications(){?%24count,%24filter,%24search,%24skip,%24top}";
/**
* Mapper for query parameters from symbol name to serialization name represented as a constant.
*/
const MicrosoftGraphDeviceManagementGetPortalNotificationsRequestBuilderGetQueryParametersMapper = {
"count": "%24count",
"filter": "%24filter",
"search": "%24search",
"skip": "%24skip",
"top": "%24top",
};
/**
* Metadata for all the requests in the request builder.
*/
export const MicrosoftGraphDeviceManagementGetPortalNotificationsRequestBuilderRequestsMetadata = {
get: {
uriTemplate: MicrosoftGraphDeviceManagementGetPortalNotificationsRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createGetPortalNotificationsGetResponseFromDiscriminatorValue,
queryParametersMapper: MicrosoftGraphDeviceManagementGetPortalNotificationsRequestBuilderGetQueryParametersMapper,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map