UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
68 lines 2.98 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createDeviceManagementIntentFromDiscriminatorValue } 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 {CreateCopyPostRequestBody} */ // @ts-ignore export function createCreateCopyPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoCreateCopyPostRequestBody; } /** * The deserialization information for the current model * @param CreateCopyPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoCreateCopyPostRequestBody(createCopyPostRequestBody = {}) { return { "backingStoreEnabled": n => { createCopyPostRequestBody.backingStoreEnabled = true; }, "description": n => { createCopyPostRequestBody.description = n.getStringValue(); }, "displayName": n => { createCopyPostRequestBody.displayName = n.getStringValue(); }, }; } /** * Serializes information the current object * @param CreateCopyPostRequestBody 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 serializeCreateCopyPostRequestBody(writer, createCopyPostRequestBody = {}, isSerializingDerivedType = false) { if (!createCopyPostRequestBody || isSerializingDerivedType) { return; } writer.writeStringValue("description", createCopyPostRequestBody.description); writer.writeStringValue("displayName", createCopyPostRequestBody.displayName); writer.writeAdditionalData(createCopyPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const CreateCopyRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/intents/{deviceManagementIntent%2Did}/createCopy"; /** * Metadata for all the requests in the request builder. */ export const CreateCopyRequestBuilderRequestsMetadata = { post: { uriTemplate: CreateCopyRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createDeviceManagementIntentFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeCreateCopyPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map