install

@Serializable
data class install(val referrerUrl: String? = null, val referrerClickTime: Long? = null, val appInstallTime: Long? = null, val inviteId: Int? = null, val userId: Int? = null) : TrackingEvent

{v2.26.5} 앱 설치

Constructors

Link copied to clipboard
constructor(referrerUrl: String? = null, referrerClickTime: Long? = null, appInstallTime: Long? = null, inviteId: Int? = null, userId: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "app_install_time" )
@SerializedName(value = "app_install_time" )
val appInstallTime: Long? = null

앱 설치 시간 (epoch seconds)

Link copied to clipboard
open val eventName: String
Link copied to clipboard
@SerialName(value = "invite_id" )
@SerializedName(value = "invite_id" )
val inviteId: Int? = null

초대 고유 아이디

Link copied to clipboard
@SerialName(value = "referrer_click_time" )
@SerializedName(value = "referrer_click_time" )
val referrerClickTime: Long? = null

레퍼러 URL 클릭 시간 (epoch seconds)

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

플레이오를 어디서 보고 다운받았는지

Link copied to clipboard
@SerialName(value = "user_id" )
@SerializedName(value = "user_id" )
val userId: Int? = 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