UNPKG

baasic-sdk-javascript

Version:

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

13 lines (12 loc) 412 B
import { IModel } from '../../../common/contracts'; import { ICalendarEventRsvpInvitationType } from './'; export interface ICalendarEventRsvp extends IModel { InvitationOnly: boolean; InvitationType?: ICalendarEventRsvpInvitationType; InvitationTypeId?: string; Json?: string; MaxSlots: number; MinSlots: number; RegistrationCloseDate?: string; TotalSlots: number; }