kakao-android-sdk-rx / com.kakao.sdk.template / Social

Social

data class Social : Parcelable

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

Parameters

likeCount - 콘텐츠의 좋아요 수

commentCount - 콘텐츠의 댓글 수

sharedCount - 콘텐츠의 공유 수

viewCount - 콘텐츠의 조회 수

subscriberCount - 콘텐츠의 구독 수

Constructors

<init>

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

Social(likeCount: Int? = null, commentCount: Int? = null, sharedCount: Int? = null, viewCount: Int? = null, subscriberCount: Int? = null)

Properties

commentCount

콘텐츠의 댓글 수

val commentCount: Int?

likeCount

콘텐츠의 좋아요 수

val likeCount: Int?

sharedCount

콘텐츠의 공유 수

val sharedCount: Int?

subscriberCount

콘텐츠의 구독 수

val subscriberCount: Int?

viewCount

콘텐츠의 조회 수

val viewCount: Int?