data class Story : Parcelable
Author
kevin.kang. Created on 2018. 3. 20..
Permission |
enum class Permission |
<init> |
Story(id: String, url: String, mediaType: String, createdAt: Date, commentCount: Int, likeCount: Int, content: String, permission: String, media: List<StoryImage>?, likes: List<StoryLike>, comments: List<StoryComment>) |
commentCount |
val commentCount: Int |
comments |
val comments: List<StoryComment> |
content |
val content: String |
createdAt |
val createdAt: Date |
id |
val id: String |
likeCount |
val likeCount: Int |
likes |
val likes: List<StoryLike> |
media |
val media: List<StoryImage>? |
mediaType |
val mediaType: String |
permission |
val permission: String |
url |
val url: String |