/** * Grant one course to a platform user, optionally linked to a placement. */ export type PlacementCourseAssignmentCreate = { user_id: number; course_id: string; started?: string; expired?: string; placement_id?: number; };