Skip to content

Commit f4221df

Browse files
authored
chore: add missing fields to GetConsoleID.kt (#18)
1 parent 04da6f6 commit f4221df

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/main/kotlin/org/retroachivements/api/data/pojo/system/GetConsoleID.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,19 @@ class GetConsoleID {
77
class Response: ArrayList<Response.Console>() {
88
data class Console (
99
@SerializedName("ID")
10-
val id: String,
10+
val id: Long,
1111

1212
@SerializedName("Name")
1313
val name: String,
1414

1515
@SerializedName("IconURL")
1616
val iconUrl: String
17+
18+
@SerializedName("Active")
19+
val active: Boolean
20+
21+
@SerializedName("IsGameSystem")
22+
val isGameSystem: Boolean
1723
)
1824
}
1925
}

0 commit comments

Comments
 (0)