ForumPost

@Serializable
data class ForumPost(val author: BaseForumAuthor, val emoticon: ForumEmoticon?, val title: String?, val content: String, val signature: String?, val postId: Int, val postedDate: Instant, val editedDate: Instant?, val editedBy: String?) : BaseForumPost(source)

A post in a ForumThread.

Constructors

Link copied to clipboard
constructor(author: BaseForumAuthor, emoticon: ForumEmoticon?, title: String?, content: String, signature: String?, postId: Int, postedDate: Instant, editedDate: Instant?, editedBy: String?)

Properties

Link copied to clipboard

The author of the post.

Link copied to clipboard

The HTML content of the post.

Link copied to clipboard

The name of the character that last edited the post. CipSoft members might edit posts.

Link copied to clipboard
val editedDate: Instant?

The date when the post was last edited. Null if it hasn't been edited.

Link copied to clipboard

The emoticon chosen for the post, if any.

Link copied to clipboard
val postedDate: Instant

The date when the post was created.

Link copied to clipboard
open override val postId: Int

The ID of the post.

Link copied to clipboard

The signature of the post's author.

Link copied to clipboard

The title of the post, if any.

Link copied to clipboard
open val url: String

The URL to this post.