UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
65 lines 2.93 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { ScreenSharingRoleObject } 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 {ChangeScreenSharingRolePostRequestBody} */ // @ts-ignore export function createChangeScreenSharingRolePostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoChangeScreenSharingRolePostRequestBody; } /** * The deserialization information for the current model * @param ChangeScreenSharingRolePostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoChangeScreenSharingRolePostRequestBody(changeScreenSharingRolePostRequestBody = {}) { return { "backingStoreEnabled": n => { changeScreenSharingRolePostRequestBody.backingStoreEnabled = true; }, "role": n => { changeScreenSharingRolePostRequestBody.role = n.getEnumValue(ScreenSharingRoleObject); }, }; } /** * Serializes information the current object * @param ChangeScreenSharingRolePostRequestBody 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 serializeChangeScreenSharingRolePostRequestBody(writer, changeScreenSharingRolePostRequestBody = {}, isSerializingDerivedType = false) { if (!changeScreenSharingRolePostRequestBody || isSerializingDerivedType) { return; } writer.writeEnumValue("role", changeScreenSharingRolePostRequestBody.role); writer.writeAdditionalData(changeScreenSharingRolePostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const ChangeScreenSharingRoleRequestBuilderUriTemplate = "{+baseurl}/communications/calls/{call%2Did}/changeScreenSharingRole"; /** * Metadata for all the requests in the request builder. */ export const ChangeScreenSharingRoleRequestBuilderRequestsMetadata = { post: { uriTemplate: ChangeScreenSharingRoleRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeChangeScreenSharingRolePostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map