io.github.wulkanowy.sdk.scrapper.school.TeacherPlus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-scrapper Show documentation
Show all versions of sdk-scrapper Show documentation
Unified way of retrieving data from the UONET+ register through mobile api and scraping api
package io.github.wulkanowy.sdk.scrapper.school
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
internal data class TeacherPlus(
@SerialName("przedmiot") val subject: String,
@SerialName("imie") val firstName: String,
@SerialName("nazwisko") val lastName: String,
@SerialName("wychowawca") val isWychowawca: Boolean,
@SerialName("globalKeySkrzynka") val mailboxGlobalKey: String?,
)
@Serializable
internal data class TeacherPlusResponse(
@SerialName("nauczyciele") val teachers: List,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy