@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
57 lines • 2.46 kB
JavaScript
/* 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 {GetVirtualAppointmentJoinWebUrlGetResponse}
*/
// @ts-ignore
export function createGetVirtualAppointmentJoinWebUrlGetResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoGetVirtualAppointmentJoinWebUrlGetResponse;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoGetVirtualAppointmentJoinWebUrlGetResponse(getVirtualAppointmentJoinWebUrlGetResponse = {}) {
return {
"backingStoreEnabled": n => { getVirtualAppointmentJoinWebUrlGetResponse.backingStoreEnabled = true; },
"value": n => { getVirtualAppointmentJoinWebUrlGetResponse.value = n.getStringValue(); },
};
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeGetVirtualAppointmentJoinWebUrlGetResponse(writer, getVirtualAppointmentJoinWebUrlGetResponse = {}) {
if (getVirtualAppointmentJoinWebUrlGetResponse) {
writer.writeStringValue("value", getVirtualAppointmentJoinWebUrlGetResponse.value);
writer.writeAdditionalData(getVirtualAppointmentJoinWebUrlGetResponse.additionalData);
}
}
/**
* Uri template for the request builder.
*/
export const GetVirtualAppointmentJoinWebUrlRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl()";
/**
* Metadata for all the requests in the request builder.
*/
export const GetVirtualAppointmentJoinWebUrlRequestBuilderRequestsMetadata = {
get: {
uriTemplate: GetVirtualAppointmentJoinWebUrlRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createGetVirtualAppointmentJoinWebUrlGetResponseFromDiscriminatorValue,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map