UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 448 B
import { MeetingCapacities } from './MeetingCapacities'; import { MeetingSlot } from './MeetingSlot'; /** List of available meeting time slots */ export interface Meetings { /** Whether or not it is possible to book a fake meeting */ canBookFakeMeeting: boolean; /** Represents meeting booking options */ capacities: MeetingCapacities; /** A time slot */ meetingSlots: MeetingSlot[]; } //# sourceMappingURL=Meetings.d.ts.map