You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
671 B
23 lines
671 B
package tv.anypoint.proxy.model.agent |
|
|
|
import kotlinx.serialization.Serializable |
|
|
|
@Serializable |
|
data class AuthRequest( |
|
var fingerPrint: String = "", |
|
val soId: Int = 0, |
|
val uuid: String = "", |
|
val usePersonalizedAd: Boolean = true, |
|
val test: Boolean = false, |
|
val zipCode: String = "", |
|
val freeStorage: Long = 0, |
|
val usedStorage: Long = 0, |
|
val cachedStorage: Long = 0, |
|
var modelName: String? = null, |
|
val firmwareBuildDate: String? = null, |
|
val firmwareVer: String? = null, |
|
val fullFirmwareVer: String? = null, |
|
val appVersion: String? = null, |
|
val platformAdId: String? = null, |
|
val sdkVersion: String? = null, |
|
)
|
|
|