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