File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ class BowtieSampsonSchemaValidatorLauncher(
209
209
issues = libraryIssues,
210
210
source = librarySource,
211
211
os = System .getProperty(" os.name" ),
212
- os_version = System .getProperty(" os.version" ),
213
- language_version = KotlinVersion .CURRENT .toString(),
212
+ osVersion = System .getProperty(" os.version" ),
213
+ languageVersion = KotlinVersion .CURRENT .toString(),
214
214
),
215
215
),
216
216
),
Original file line number Diff line number Diff line change 1
1
import kotlinx.serialization.Serializable
2
+ import kotlinx.serialization.SerialName
2
3
import kotlinx.serialization.json.JsonElement
3
4
4
5
@Serializable
@@ -7,7 +8,7 @@ class StartResponse(
7
8
val implementation : Implementation ,
8
9
)
9
10
10
- @Suppress(" LongParameterList" , " ConstructorParameterNaming " )
11
+ @Suppress(" LongParameterList" )
11
12
@Serializable
12
13
class Implementation (
13
14
val language : String = " kotlin" ,
@@ -18,8 +19,8 @@ class Implementation(
18
19
val issues : String ,
19
20
val source : String ,
20
21
val os : String ,
21
- val os_version : String ,
22
- val language_version : String ,
22
+ @SerialName( " os_version " ) val osVersion : String ,
23
+ @SerialName( " language_version " ) val languageVersion : String ,
23
24
)
24
25
25
26
@Serializable
You can’t perform that action at this time.
0 commit comments