community_ reply

@Serializable
data class community_reply(val postId: Int? = null, val gameId: Int? = null) : TrackingEvent

{v2.26.5} 커뮤니티 댓글 작성

Constructors

Link copied to clipboard
constructor(postId: Int? = null, gameId: Int? = 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? = null

게임 ID

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

게시글 ID

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