LastPost

@Serializable
data class LastPost(val author: String, val postId: Int, val date: Instant, val deleted: Boolean, val traded: Boolean) : BaseForumPost(source)

Information about the last post in a board or thread.

Constructors

Link copied to clipboard
constructor(author: String, postId: Int, date: Instant, deleted: Boolean, traded: Boolean)

Properties

Link copied to clipboard

The name of the character that made the last post.

Link copied to clipboard

The URL to the author's character page. If the author is deleted, there is no URL.

Link copied to clipboard
val date: Instant

The date and time when the post was published.

Link copied to clipboard

Whether the author of the post is currently deleted.

Link copied to clipboard
open override val postId: Int

The internal ID of the last post.

Link copied to clipboard

Whether the post was made by a character that was traded afterwards.

Link copied to clipboard
open val url: String

The URL to this post.