-
The search query used to create these results.
Declaration
Swift
var queryString: String
-
The total number of posts in the result set. The actual # of results returned may be fewer than this, even if we return ‘complete’ results. This is due to additional filtering that is done after the database query. See notes on
ContentFilterable.filterForMention(of:)
Declaration
Swift
var totalPosts: Int
-
The number of posts the server attempted to gather. posts.count may be less than this number if posts were filtered out by post-query filtering, or if start + limit > totalPosts.
Declaration
Swift
var limit: Int
-
The posts in the forum.
Declaration
Swift
var posts: [PostData]