Merge remote-tracking branch 'origin/release' into dev

This commit is contained in:
chenjuntao
2023-08-08 16:21:10 +08:00
6 changed files with 23 additions and 14 deletions

View File

@ -3,15 +3,10 @@ package com.gh.gamecenter.common.entity
import com.google.gson.annotations.SerializedName
class PkgConfigEntity(
@SerializedName("code") var code: Int? = null,
@SerializedName("data") var data: Data? = Data()
@SerializedName("first_lanuch_jump") var link: PkgLinkEntity? = PkgLinkEntity(),
@SerializedName("activate_reporting_ratio") var activateRatio: Int? = 0,
@SerializedName("keypoint_action_reporting") var coreEventGameCategory: String? = null,
) {
data class Data(
@SerializedName("first_lanuch_jump") var link: PkgLinkEntity? = PkgLinkEntity(),
@SerializedName("activate_reporting_ratio") var activateRatio: Int? = 0,
@SerializedName("keypoint_action_reporting") var coreEventGameCategory: String? = null,
)
class PkgLinkEntity(
@SerializedName("home_index")
var shouldStayAtHomePage: Boolean = false,