UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
65 lines 3.2 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createTeleconferenceDeviceQualityFromDiscriminatorValue, serializeTeleconferenceDeviceQuality } 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 {LogTeleconferenceDeviceQualityPostRequestBody} */ // @ts-ignore export function createLogTeleconferenceDeviceQualityPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoLogTeleconferenceDeviceQualityPostRequestBody; } /** * The deserialization information for the current model * @param LogTeleconferenceDeviceQualityPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoLogTeleconferenceDeviceQualityPostRequestBody(logTeleconferenceDeviceQualityPostRequestBody = {}) { return { "backingStoreEnabled": n => { logTeleconferenceDeviceQualityPostRequestBody.backingStoreEnabled = true; }, "quality": n => { logTeleconferenceDeviceQualityPostRequestBody.quality = n.getObjectValue(createTeleconferenceDeviceQualityFromDiscriminatorValue); }, }; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param LogTeleconferenceDeviceQualityPostRequestBody The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeLogTeleconferenceDeviceQualityPostRequestBody(writer, logTeleconferenceDeviceQualityPostRequestBody = {}, isSerializingDerivedType = false) { if (!logTeleconferenceDeviceQualityPostRequestBody || isSerializingDerivedType) { return; } writer.writeObjectValue("quality", logTeleconferenceDeviceQualityPostRequestBody.quality, serializeTeleconferenceDeviceQuality); writer.writeAdditionalData(logTeleconferenceDeviceQualityPostRequestBody.additionalData); } /** * Uri template for the request builder. */ export const LogTeleconferenceDeviceQualityRequestBuilderUriTemplate = "{+baseurl}/communications/calls/logTeleconferenceDeviceQuality"; /** * Metadata for all the requests in the request builder. */ export const LogTeleconferenceDeviceQualityRequestBuilderRequestsMetadata = { post: { uriTemplate: LogTeleconferenceDeviceQualityRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeLogTeleconferenceDeviceQualityPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map