Skip to content

Commit 7065022

Browse files
committed
Release 0.0.13
1 parent 09f5040 commit 7065022

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fern-api/codecombat",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"repository": "https://github.com/codecombat/codecombat-node",
55
"files": [
66
"dist",

src/api/resources/commons/types/ClassroomResponse.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ import { CodeCombat } from "@fern-api/codecombat";
99
*/
1010
export interface ClassroomResponse {
1111
id?: CodeCombat.ObjectIdString;
12+
/** The name of the classroom */
1213
name?: string;
14+
/** List of _ids of the student members of the classroom */
1315
members?: CodeCombat.ObjectIdString[];
16+
/** The _id of the teacher owner of the classroom. */
1417
ownerId?: CodeCombat.ObjectIdString;
1518
description?: string;
1619
courses?: CodeCombat.Course[];

0 commit comments

Comments
 (0)