// Import types
import Occurrence from './Occurrence';

/**
 * Type for storing Occurrence info in DB.
 * @author Benedikt Arnarsson hoe
 */
type OccurrenceDocument = (
  & {
    // Occurrence ID generated from OccurrenceBasicInfo
    id: string,
  }
  & (
    // Course ID and Intra-Helix ID
    Occurrence
  )
);

export default OccurrenceDocument;
