UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

13 lines (11 loc) 210 B
/** * Enum for the attendance method * @author Gabe Abrams */ enum AttendanceMethod { InPerson = 'in-person', Live = 'live', Async = 'async', Excused = 'excused', } export default AttendanceMethod;