@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
70 lines • 3.23 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createManagedDeviceFromDiscriminatorValue, deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse, serializeManagedDevice } 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 {GetLoggedOnManagedDevicesGetResponse}
*/
// @ts-ignore
export function createGetLoggedOnManagedDevicesGetResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoGetLoggedOnManagedDevicesGetResponse;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoGetLoggedOnManagedDevicesGetResponse(getLoggedOnManagedDevicesGetResponse = {}) {
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(getLoggedOnManagedDevicesGetResponse)), { "value": n => { getLoggedOnManagedDevicesGetResponse.value = n.getCollectionOfObjectValues(createManagedDeviceFromDiscriminatorValue); } });
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeGetLoggedOnManagedDevicesGetResponse(writer, getLoggedOnManagedDevicesGetResponse = {}) {
if (getLoggedOnManagedDevicesGetResponse) {
serializeBaseCollectionPaginationCountResponse(writer, getLoggedOnManagedDevicesGetResponse);
writer.writeCollectionOfObjectValues("value", getLoggedOnManagedDevicesGetResponse.value, serializeManagedDevice);
}
}
/**
* Uri template for the request builder.
*/
export const GetLoggedOnManagedDevicesRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/getLoggedOnManagedDevices(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
/**
* Mapper for query parameters from symbol name to serialization name represented as a constant.
*/
const GetLoggedOnManagedDevicesRequestBuilderGetQueryParametersMapper = {
"count": "%24count",
"expand": "%24expand",
"filter": "%24filter",
"orderby": "%24orderby",
"search": "%24search",
"select": "%24select",
"skip": "%24skip",
"top": "%24top",
};
/**
* Metadata for all the requests in the request builder.
*/
export const GetLoggedOnManagedDevicesRequestBuilderRequestsMetadata = {
get: {
uriTemplate: GetLoggedOnManagedDevicesRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createGetLoggedOnManagedDevicesGetResponseFromDiscriminatorValue,
queryParametersMapper: GetLoggedOnManagedDevicesRequestBuilderGetQueryParametersMapper,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map