click_ community Post_ global Search Detail

@Serializable
data class click_communityPost_globalSearchDetail(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 globalSearchDetailType: String = "") : 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, globalSearchDetailType: String = "")

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 = "globalSearchDetail_type" )
@SerializedName(value = "globalSearchDetail_type" )
val globalSearchDetailType: String

통합 검색 화면 type

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 = "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