UNPKG

@microsoft/msgraph-beta-sdk-domains

Version:
64 lines 2.74 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @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 {ForceDeletePostRequestBody} */ // @ts-ignore export function createForceDeletePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoForceDeletePostRequestBody; } /** * The deserialization information for the current model * @param ForceDeletePostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoForceDeletePostRequestBody(forceDeletePostRequestBody = {}) { return { "backingStoreEnabled": n => { forceDeletePostRequestBody.backingStoreEnabled = true; }, "disableUserAccounts": n => { var _a; forceDeletePostRequestBody.disableUserAccounts = (_a = n.getBooleanValue()) !== null && _a !== void 0 ? _a : false; }, }; } /** * Serializes information the current object * @param ForceDeletePostRequestBody 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 serializeForceDeletePostRequestBody(writer, forceDeletePostRequestBody = {}, isSerializingDerivedType = false) { var _a; if (!forceDeletePostRequestBody || isSerializingDerivedType) { return; } writer.writeBooleanValue("disableUserAccounts", (_a = forceDeletePostRequestBody.disableUserAccounts) !== null && _a !== void 0 ? _a : false); writer.writeAdditionalData(forceDeletePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ForceDeleteRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/forceDelete"; /** * Metadata for all the requests in the request builder. */ export const ForceDeleteRequestBuilderRequestsMetadata = { post: { uriTemplate: ForceDeleteRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeForceDeletePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map