UNPKG

@microsoft/msgraph-beta-sdk-solutions

Version:
66 lines 2.94 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createBusinessScenarioPlanReferenceFromDiscriminatorValue, createBusinessScenarioTaskTargetBaseFromDiscriminatorValue, serializeBusinessScenarioTaskTargetBase } 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 {GetPlanPostRequestBody} */ // @ts-ignore export function createGetPlanPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoGetPlanPostRequestBody; } /** * The deserialization information for the current model * @param GetPlanPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoGetPlanPostRequestBody(getPlanPostRequestBody = {}) { return { "backingStoreEnabled": n => { getPlanPostRequestBody.backingStoreEnabled = true; }, "target": n => { getPlanPostRequestBody.target = n.getObjectValue(createBusinessScenarioTaskTargetBaseFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param GetPlanPostRequestBody 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 serializeGetPlanPostRequestBody(writer, getPlanPostRequestBody = {}, isSerializingDerivedType = false) { if (!getPlanPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("target", getPlanPostRequestBody.target, serializeBusinessScenarioTaskTargetBase); writer.writeAdditionalData(getPlanPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const GetPlanRequestBuilderUriTemplate = "{+baseurl}/solutions/businessScenarios/{businessScenario%2Did}/planner/getPlan"; /** * Metadata for all the requests in the request builder. */ export const GetPlanRequestBuilderRequestsMetadata = { post: { uriTemplate: GetPlanRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createBusinessScenarioPlanReferenceFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeGetPlanPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map