-
The ID of the post.
Declaration
Swift
var postID: Int
-
The ID of the Forum containing the post.
Declaration
Swift
var forumID: UUID
-
The timestamp of the post.
Declaration
Swift
var createdAt: Date
-
The post’s author.
Declaration
Swift
var author: UserHeader
-
The text of the forum post.
Declaration
Swift
var text: String
-
The filenames of the post’s optional images.
Declaration
Swift
var images: [String]?
-
Whether the current user has bookmarked the post.
Declaration
Swift
var isBookmarked: Bool
-
The users with “laugh” reactions on the post.
Declaration
Swift
var laughs: [UserHeader]
-
The users with “like” reactions on the post.
Declaration
Swift
var likes: [UserHeader]
-
The users with “love” reactions on the post.
Declaration
Swift
var loves: [UserHeader]
-
Declaration
Swift
init(post: ForumPost, author: UserHeader, overrideQuarantine: Bool = false) throws