UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
66 lines 3.32 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createPowerliftAppDiagnosticDownloadRequestFromDiscriminatorValue, serializePowerliftAppDiagnosticDownloadRequest } 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 {DownloadPowerliftAppDiagnosticPostRequestBody} */ // @ts-ignore export function createDownloadPowerliftAppDiagnosticPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoDownloadPowerliftAppDiagnosticPostRequestBody; } /** * The deserialization information for the current model * @param DownloadPowerliftAppDiagnosticPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoDownloadPowerliftAppDiagnosticPostRequestBody(downloadPowerliftAppDiagnosticPostRequestBody = {}) { return { "backingStoreEnabled": n => { downloadPowerliftAppDiagnosticPostRequestBody.backingStoreEnabled = true; }, "request": n => { downloadPowerliftAppDiagnosticPostRequestBody.request = n.getObjectValue(createPowerliftAppDiagnosticDownloadRequestFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param DownloadPowerliftAppDiagnosticPostRequestBody 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 serializeDownloadPowerliftAppDiagnosticPostRequestBody(writer, downloadPowerliftAppDiagnosticPostRequestBody = {}, isSerializingDerivedType = false) { if (!downloadPowerliftAppDiagnosticPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("request", downloadPowerliftAppDiagnosticPostRequestBody.request, serializePowerliftAppDiagnosticDownloadRequest); writer.writeAdditionalData(downloadPowerliftAppDiagnosticPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const DownloadPowerliftAppDiagnosticRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/managedDevices/downloadPowerliftAppDiagnostic"; /** * Metadata for all the requests in the request builder. */ export const DownloadPowerliftAppDiagnosticRequestBuilderRequestsMetadata = { post: { uriTemplate: DownloadPowerliftAppDiagnosticRequestBuilderUriTemplate, responseBodyContentType: "application/octet-stream, application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendPrimitive", responseBodyFactory: "ArrayBuffer", requestBodyContentType: "application/json", requestBodySerializer: serializeDownloadPowerliftAppDiagnosticPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map