game_ play

@Serializable
data class game_play(val gameId: Int = 0, val gameName: String = "", val genre: String? = null, val isPromo: Int? = null, val packageName: String = "", val source: String = "", val sourceKey: String? = null, val xpType: String? = null) : TrackingEvent

{v2.26.5} 게임 플레이 클릭

Constructors

Link copied to clipboard
constructor(gameId: Int = 0, gameName: String = "", genre: String? = null, isPromo: Int? = null, packageName: String = "", source: String = "", sourceKey: String? = null, xpType: String? = null)

Properties

Link copied to clipboard
open val eventName: String
Link copied to clipboard
@SerialName(value = "game_id" )
@SerializedName(value = "game_id" )
val gameId: Int = 0

플레이오 내 부여받은 게임 아이디

Link copied to clipboard
@SerialName(value = "game_name" )
@SerializedName(value = "game_name" )
val gameName: String

게임 이름

Link copied to clipboard
@SerialName(value = "genre" )
@SerializedName(value = "genre" )
val genre: String? = null

게임 장르

Link copied to clipboard
@SerialName(value = "is_promo" )
@SerializedName(value = "is_promo" )
val isPromo: Int? = null

프로모션 게임인지 1=프로모션게임 0=일반게임 null=모름

Link copied to clipboard
@SerialName(value = "package_name" )
@SerializedName(value = "package_name" )
val packageName: String

게임 패키지명

Link copied to clipboard
@SerialName(value = "source" )
@SerializedName(value = "source" )
val source: String
Link copied to clipboard
@SerialName(value = "source_key" )
@SerializedName(value = "source_key" )
val sourceKey: String? = null
Link copied to clipboard
@SerialName(value = "xp_type" )
@SerializedName(value = "xp_type" )
val xpType: String? = null

Functions

Link copied to clipboard
fun TrackingEvent.getRule(rules: <Error class: unknown class><String, TrackingEventRule>): TrackingEventRule?
Link copied to clipboard
fun TrackingEvent.hash(): String

TrackingEvent의 hash값을 반환한다. 이름과 내용이 같다면 같은 값을 가진다.

Link copied to clipboard
fun TrackingEvent.toJSONObject(serde: JsonSerde): JSONObject