data class Social : Parcelable
좋아요 수, 댓글 수 등의 소셜 정보를 표현하기 위해 사용되는 오브젝트.
<init> |
좋아요 수, 댓글 수 등의 소셜 정보를 표현하기 위해 사용되는 오브젝트. Social(likeCount: Int? = null, commentCount: Int? = null, : Int? = null, viewCount: Int? = null, subscriberCount: Int? = null) |
commentCount |
콘텐츠의 댓글 수 val commentCount: Int? |
likeCount |
콘텐츠의 좋아요 수 val likeCount: Int? |
sharedCount |
콘텐츠의 공유 수 val sharedCount: Int? |
subscriberCount |
콘텐츠의 구독 수 val subscriberCount: Int? |
viewCount |
콘텐츠의 조회 수 val viewCount: Int? |