StudyEnrollment

Type Alias: StudyEnrollment

[object Object]

Defined in: api/types.gen.ts:1913

Represents a study enrollment of a member in a study program. A StudyEnrollment has a unique identifier, references to the associated Member and Study, the date and time when the enrollment started, an optional completion date, and the current status of the enrollment (e.g., Enrolled, Completed, DroppedOut). This entity is used to manage and track enrollments for study programs within the system, allowing members to participate in academic programs based on their preferences and eligibility, and enabling better organization and reporting of student enrollments and academic progress.

Properties

completionDate?

optional completionDate?: string | null

Defined in: api/types.gen.ts:1935

The date and time when the enrollment ended, if applicable.


enrollmentDate?

optional enrollmentDate?: string

Defined in: api/types.gen.ts:1931

The date and time when the enrollment started.


id?

optional id?: number

Defined in: api/types.gen.ts:1917

The unique identifier of a study enrollment, assigned incrementally.


member?

optional member?: Member

Defined in: api/types.gen.ts:1922


memberId?

optional memberId?: string

Defined in: api/types.gen.ts:1921

The member associated with this enrollment.


status?

optional status?: StudyStatus

Defined in: api/types.gen.ts:1936


study?

optional study?: Study

Defined in: api/types.gen.ts:1927


studyId?

optional studyId?: number

Defined in: api/types.gen.ts:1926

The study associated with this enrollment.

On this page