class StudentConstructor { constructor( name, userId, studentId, group, email, commit, projects, interface_test, pipeline ) { this.name = name; this.userId = userId; this.studentId = studentId; this.group = group; this.email = email; this.commit = commit; this.projects = projects; this.test = { "interface-test": interface_test }; this.pipeline = pipeline; } } module.exports = StudentConstructor;