UNPKG

baasic-sdk-javascript

Version:

JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

18 lines (17 loc) 681 B
import { IModel } from '../../../common/contracts'; import { ICalendarEventRsvpAttendeeStatus, ICalendarEventRsvpAttendeeInvitationType, ICalendarUserInfo, ICalendarEventAttendeeOptions } from './'; export interface ICalendarEventAttendee extends IModel { AttendeeStatus?: ICalendarEventRsvpAttendeeStatus; AttendeeStatusId: string; Email?: string; EventId: string; FullName?: string; InvitationType?: ICalendarEventRsvpAttendeeInvitationType; InvitationTypeId?: string; Json?: string; Options?: ICalendarEventAttendeeOptions; Slots: number; SlotsRequested?: number; User?: ICalendarUserInfo; UserId?: string; }