Social

data class Social @JvmOverloads constructor(likeCount: Int?, commentCount: Int?, sharedCount: Int?, viewCount: Int?, subscriberCount: Int?) : Parcelable

좋아요 수, 댓글 수 등의 소셜 정보를 표현하기 위해 사용되는 오브젝트.

Parameters

likeCount

콘텐츠의 좋아요 수

commentCount

콘텐츠의 댓글 수

sharedCount

콘텐츠의 공유 수

viewCount

콘텐츠의 조회 수

subscriberCount

콘텐츠의 구독 수

Constructors

Link copied to clipboard
fun Social(likeCount: Int? = null, commentCount: Int? = null, sharedCount: Int? = null, viewCount: Int? = null, subscriberCount: Int? = null)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val commentCount: Int? = null
Link copied to clipboard
val likeCount: Int? = null
Link copied to clipboard
val sharedCount: Int? = null
Link copied to clipboard
val subscriberCount: Int? = null
Link copied to clipboard
val viewCount: Int? = null