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

commonMain.TorrentPeers.kt Maven / Gradle / Ivy

package qbittorrent.models

import dev.drewhamilton.poko.Poko
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Poko
@Serializable
class TorrentPeers(
    @SerialName("full_update")
    val fullUpdate: Boolean = false,
    val rid: Int = 0,
    @SerialName("show_flags")
    val showFlags: Boolean = false,
    val peers: Map = emptyMap(),
    @SerialName("peers_removed")
    val peersRemoved: List = emptyList(),
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy