@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
62 lines • 2.76 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createPowerliftDownloadRequestFromDiscriminatorValue, serializePowerliftDownloadRequest } 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 {DownloadAppDiagnosticsPostRequestBody}
*/
// @ts-ignore
export function createDownloadAppDiagnosticsPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoDownloadAppDiagnosticsPostRequestBody;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoDownloadAppDiagnosticsPostRequestBody(downloadAppDiagnosticsPostRequestBody = {}) {
return {
"backingStoreEnabled": n => { downloadAppDiagnosticsPostRequestBody.backingStoreEnabled = true; },
"request": n => { downloadAppDiagnosticsPostRequestBody.request = n.getObjectValue(createPowerliftDownloadRequestFromDiscriminatorValue); },
};
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeDownloadAppDiagnosticsPostRequestBody(writer, downloadAppDiagnosticsPostRequestBody = {}) {
if (downloadAppDiagnosticsPostRequestBody) {
writer.writeObjectValue("request", downloadAppDiagnosticsPostRequestBody.request, serializePowerliftDownloadRequest);
writer.writeAdditionalData(downloadAppDiagnosticsPostRequestBody.additionalData);
}
}
/**
* Uri template for the request builder.
*/
export const DownloadAppDiagnosticsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/managedDevices/downloadAppDiagnostics";
/**
* Metadata for all the requests in the request builder.
*/
export const DownloadAppDiagnosticsRequestBuilderRequestsMetadata = {
post: {
uriTemplate: DownloadAppDiagnosticsRequestBuilderUriTemplate,
responseBodyContentType: "application/octet-stream",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "sendPrimitive",
responseBodyFactory: "ArrayBuffer",
requestBodyContentType: "application/json",
requestBodySerializer: serializeDownloadAppDiagnosticsPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map