Files
assistant-android/app/src/main/java/com/gh/gamecenter/entity/AuthDialogEntity.kt

21 lines
738 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.gh.gamecenter.entity
import android.os.Parcelable
import com.google.gson.annotations.SerializedName
import kotlinx.parcelize.Parcelize
@Parcelize
data class AuthDialogEntity(
@SerializedName("_id")
var id: String = "",
var link: String = "",
@SerializedName("game_category")
var gameCategory:String="",//online (网络游戏) , local (单机游戏) welfare (福利游戏)
var level: String = ""//MUST_PASS:提示且认证通过 ALWAYS_HINT:仅提示且不可关闭 OPTIONAL_HINT:仅提示且可关闭
) : Parcelable
enum class AuthDialogLevel(val value: String){
MUST_PASS("MUST_PASS"),
ALWAYS_HINT("ALWAYS_HINT"),
OPTIONAL_HINT("OPTIONAL_HINT"),
}