Social

@Serializable
data class Social @JvmOverloads constructor(val likeCount: Int? = null, val commentCount: Int? = null, val sharedCount: Int? = null, val viewCount: Int? = null, val subscriberCount: Int? = null)

소셜 정보
Social information

Parameters

likeCount

좋아요 수
Number of likes

commentCount

댓글 수
Number of comments

sharedCount

공유 수
Number of shares

viewCount

조회 수
Views

subscriberCount

구독 수
Number of subscribers

Constructors

Link copied to clipboard
@JvmOverloads
constructor(likeCount: Int? = null, commentCount: Int? = null, sharedCount: Int? = null, viewCount: Int? = null, subscriberCount: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "comment_count")
val commentCount: Int? = null
Link copied to clipboard
@SerialName(value = "like_count")
val likeCount: Int? = null
Link copied to clipboard
@SerialName(value = "shared_count")
val sharedCount: Int? = null
Link copied to clipboard
@SerialName(value = "subscriber_count")
val subscriberCount: Int? = null
Link copied to clipboard
@SerialName(value = "view_count")
val viewCount: Int? = null