impression_ community Post_ live Event Detail

@Serializable
data class impression_communityPost_liveEventDetail(val id: Int = 0, val title: String = "", val type: String = "", val isLike: Boolean? = null, val isReply: Boolean? = null, val likeCnt: Int = 0, val replyCnt: Int = 0, val communityBoardId: Int? = null, val communityBoardCategory: String? = null, val communityBoardTab: String? = null, val communityBoardIsSubscribe: Boolean? = null, val order: Int? = null) : TrackingEvent

{v2.33.0} 진행 중인 이벤트 화면 뷰

Constructors

Link copied to clipboard
constructor(id: Int = 0, title: String = "", type: String = "", isLike: Boolean? = null, isReply: Boolean? = null, likeCnt: Int = 0, replyCnt: Int = 0, communityBoardId: Int? = null, communityBoardCategory: String? = null, communityBoardTab: String? = null, communityBoardIsSubscribe: Boolean? = null, order: Int? = null)

Properties

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

커뮤니티 게시판 카테고리

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

커뮤니티 게시판 id

Link copied to clipboard
@SerialName(value = "community_board_is_subscribe" )
@SerializedName(value = "community_board_is_subscribe" )
val communityBoardIsSubscribe: Boolean? = null

커뮤니티 게시판 구독 여부

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

커뮤니티 게시판 탭

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

커뮤니티 게시글 id

Link copied to clipboard
@SerialName(value = "is_like" )
@SerializedName(value = "is_like" )
val isLike: Boolean? = null

좋아요 여부

Link copied to clipboard
@SerialName(value = "is_reply" )
@SerializedName(value = "is_reply" )
val isReply: Boolean? = null

답변 여부

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

좋아요 횟수

Link copied to clipboard
@SerialName(value = "order" )
@SerializedName(value = "order" )
val order: Int? = null
Link copied to clipboard
@SerialName(value = "reply_cnt" )
@SerializedName(value = "reply_cnt" )
val replyCnt: Int = 0

댓글 수

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

커뮤니티 게시글 title

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

커뮤니티 게시글 type

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