![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.passport.model.GetKeyResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.passport.model
import com.google.gson.annotations.SerializedName
data class GetKeyResponse(
@SerializedName("code")
var code: Int, // 0
@SerializedName("message")
var message: String?,
@SerializedName("data")
var `data`: Data,
@SerializedName("ts")
var ts: Long // 1550219688
) {
data class Data(
@SerializedName("hash")
var hash: String, // 93ac6f60b4789952
@SerializedName("key")
var key: String // -----BEGIN PUBLIC KEY-----MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCdScM09sZJqFPX7bvmB2y6i08JbHsa0v4THafPbJN9NoaZ9Djz1LmeLkVlmWx1DwgHVW+K7LVWT5FV3johacVRuV9837+RNntEK6SE82MPcl7fA++dmW2cLlAjsIIkrX+aIvvSGCuUfcWpWFy3YVDqhuHrNDjdNcaefJIQHMW+sQIDAQAB-----END PUBLIC KEY-----
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy