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

com.hiczp.bilibili.api.passport.model.GetKeyResponse.kt Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
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