alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
13 lines (11 loc) • 351 B
text/typescript
/**
* Type for info attached to Occurrence for setting up live-grouper.
* @author Benedikt Arnarsson
*/
type OccurrenceGrouperInfo = {
// Flag indicating the the live-grouper algorithm is enabled
grouperEnabled: true,
// Series ID, for inheriting groups from previous occurrences
seriesId: number,
};
export default OccurrenceGrouperInfo;