Study
Type Alias: Study
[object Object]
Defined in: api/types.gen.ts:1890
Represents a study program. A Study has a unique identifier, a title, a nominal duration in years, and a type (e.g., Bachelor, Master). Each Study can have multiple enrollments associated with it through the StudyEnrollment entity. This entity is used to manage and organize different study programs within the system, allowing for better tracking of student enrollments and academic programs offered by the organization.
Properties
enrollments?
optionalenrollments?:StudyEnrollment[]
Defined in: api/types.gen.ts:1907
The enrollments associated with this study.
id?
optionalid?:number
Defined in: api/types.gen.ts:1894
The unique identifier of a study, assigned incrementally.
nominalDurationYears?
optionalnominalDurationYears?:number
Defined in: api/types.gen.ts:1902
The default duration of the study in years.
title
[object Object]
Defined in: api/types.gen.ts:1898
The title of the study.
type?
optionaltype?:StudyType
Defined in: api/types.gen.ts:1903