All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.wulkanowy.sdk.scrapper.school.SchoolPlus.kt Maven / Gradle / Ivy

Go to download

Unified way of retrieving data from the UONET+ register through mobile api and scraping api

There is a newer version: 2.7.0
Show newest version
package io.github.wulkanowy.sdk.scrapper.school

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
internal data class SchoolPlus(
    @SerialName("nazwa") val name: String,
    @SerialName("imienia") val patron: String,
    @SerialName("numer") val number: String,
    @SerialName("miejscowosc") val town: String,
    @SerialName("ulica") val street: String,
    @SerialName("kodPocztowy") val postcode: String,
    @SerialName("nrDomu") val buildingNumber: String,
    @SerialName("nrMieszkania") val apartmentNumber: String,
    @SerialName("dyrektorzy") val headmasters: List?,
    @SerialName("stronaWwwUrl") val website: String,
    @SerialName("mail") val email: String,
    @SerialName("telSluzbowy") val workPhone: String,
    @SerialName("telKomorkowy") val mobilePhone: String,
    @SerialName("telDomowy") val homePhone: String,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy