We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04da6f6 commit f4221dfCopy full SHA for f4221df
src/main/kotlin/org/retroachivements/api/data/pojo/system/GetConsoleID.kt
@@ -7,13 +7,19 @@ class GetConsoleID {
7
class Response: ArrayList<Response.Console>() {
8
data class Console (
9
@SerializedName("ID")
10
- val id: String,
+ val id: Long,
11
12
@SerializedName("Name")
13
val name: String,
14
15
@SerializedName("IconURL")
16
val iconUrl: String
17
+
18
+ @SerializedName("Active")
19
+ val active: Boolean
20
21
+ @SerializedName("IsGameSystem")
22
+ val isGameSystem: Boolean
23
)
24
}
25
0 commit comments