fursuit-tv-sdk
Toggle table of contents
0.2.2
common
Target filter
common
Switch theme
Search in API
Skip to content
fursuit-tv-sdk
fursuit-tv-sdk
/
com.furrist.rp.furtv.sdk.user
/
LikeStatusData
Like
Status
Data
@
Serializable
data
class
LikeStatusData
(
val
likeCount
:
Int
,
val
isLiked
:
Boolean
,
val
canLike
:
Boolean
,
val
daysUntilCanLike
:
Int
?
=
null
)
点赞状态数据,包含 VDS 返回的点赞相关信息。
Parameters
like
Count
点赞总数
is
Liked
当前用户是否已点赞
can
Like
当前用户是否可以点赞
days
Until
Can
Like
距离可点赞的天数
Members
Constructors
Like
Status
Data
Link copied to clipboard
constructor
(
likeCount
:
Int
,
isLiked
:
Boolean
,
canLike
:
Boolean
,
daysUntilCanLike
:
Int
?
=
null
)
Properties
can
Like
Link copied to clipboard
@
SerialName
(
value
=
"can_like"
)
val
canLike
:
Boolean
days
Until
Can
Like
Link copied to clipboard
@
SerialName
(
value
=
"days_until_can_like"
)
val
daysUntilCanLike
:
Int
?
is
Liked
Link copied to clipboard
@
SerialName
(
value
=
"is_liked"
)
val
isLiked
:
Boolean
like
Count
Link copied to clipboard
@
SerialName
(
value
=
"like_count"
)
val
likeCount
:
Int