post_ chat_ chatDetail

@Serializable
data class post_chat_chatDetail(val id: Int? = null, val userId: Int = 0, val type: String = "", val comment: String = "") : TrackingEvent

{v2.33.0} 1 대 1 대화 화면에서 채팅 대화 올리기 클릭

Constructors

Link copied to clipboard
constructor(id: Int? = null, userId: Int = 0, type: String = "", comment: String = "")

Properties

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

채팅 id

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

채팅 타입. e.g : "text", "image"

Link copied to clipboard
@SerialName(value = "user_id" )
@SerializedName(value = "user_id" )
val userId: Int = 0

대화 상대 유저 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