@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
63 lines • 3.1 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createAttendeeNotificationInfoFromDiscriminatorValue, serializeAttendeeNotificationInfo, VirtualAppointmentMessageTypeObject } 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 {SendVirtualAppointmentSmsPostRequestBody}
*/
// @ts-ignore
export function createSendVirtualAppointmentSmsPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoSendVirtualAppointmentSmsPostRequestBody;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoSendVirtualAppointmentSmsPostRequestBody(sendVirtualAppointmentSmsPostRequestBody = {}) {
return {
"attendees": n => { sendVirtualAppointmentSmsPostRequestBody.attendees = n.getCollectionOfObjectValues(createAttendeeNotificationInfoFromDiscriminatorValue); },
"backingStoreEnabled": n => { sendVirtualAppointmentSmsPostRequestBody.backingStoreEnabled = true; },
"messageType": n => { sendVirtualAppointmentSmsPostRequestBody.messageType = n.getEnumValue(VirtualAppointmentMessageTypeObject); },
};
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeSendVirtualAppointmentSmsPostRequestBody(writer, sendVirtualAppointmentSmsPostRequestBody = {}) {
if (sendVirtualAppointmentSmsPostRequestBody) {
writer.writeCollectionOfObjectValues("attendees", sendVirtualAppointmentSmsPostRequestBody.attendees, serializeAttendeeNotificationInfo);
writer.writeEnumValue("messageType", sendVirtualAppointmentSmsPostRequestBody.messageType);
writer.writeAdditionalData(sendVirtualAppointmentSmsPostRequestBody.additionalData);
}
}
/**
* Uri template for the request builder.
*/
export const SendVirtualAppointmentSmsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentSms";
/**
* Metadata for all the requests in the request builder.
*/
export const SendVirtualAppointmentSmsRequestBuilderRequestsMetadata = {
post: {
uriTemplate: SendVirtualAppointmentSmsRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "sendNoResponseContent",
requestBodyContentType: "application/json",
requestBodySerializer: serializeSendVirtualAppointmentSmsPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map