interface Replyable
Base interface for all items that be replied to, including Submission and Comment.
fullname |
Fullname of the item, e.g. "t1_c3v7f8u" abstract val fullname: String |
Comment |
This class can represent a comment on a Submission or a reply to another comment. data class Comment : CommentData, Votable, Saveable, Created, Editable, Distinguishable, Gildable, Replyable, Parcelable |
Message |
This class represents the message a user can send or receive. Messages are grouped in the user inbox. data class Message : Thing, Votable, Created, Distinguishable, Replyable, Parcelable |
Submission |
This class represents a user post in a specific Subreddit, this class can be replied to, in a form of a comment section. data class Submission : Contribution, Votable, Saveable, Created, Editable, Distinguishable, Gildable, Replyable, Parcelable |