Fix ustawienia values in grades response in uonetplus-uczenplus
This commit is contained in:
parent
77d6083752
commit
9b7e8585b0
2 changed files with 4 additions and 4 deletions
|
@ -1184,7 +1184,7 @@ internal val ApiEndpointsVHeaders = mapOf(
|
|||
"V-TokenApi" to "{%UUID%}-{%vTokenApiIndexed%}",
|
||||
),
|
||||
"uonetplus-uczenplus" to mapOf(
|
||||
"V-TokenApi" to "{UUID}-{appCustomerDb}-{appCustomerDbSig}-{appVersion}-{apiKey}",
|
||||
"V-TokenApi" to "{UUID}-{appCustomerDb}-{appCustomerDbSig}-{apiKey}",
|
||||
),
|
||||
),
|
||||
)
|
||||
|
|
|
@ -36,13 +36,13 @@ internal data class GradesResponse(
|
|||
internal data class GradesSettings(
|
||||
|
||||
@SerialName("isSrednia")
|
||||
val isAverage: Boolean,
|
||||
val isAverage: Boolean = false,
|
||||
|
||||
@SerialName("isPunkty")
|
||||
val isPoints: Boolean,
|
||||
val isPoints: Boolean = false,
|
||||
|
||||
@SerialName("isDorosli")
|
||||
val isForAdults: Boolean,
|
||||
val isForAdults: Boolean = false,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
|
|
Loading…
Reference in a new issue