ForumSearchData
public struct ForumSearchData : Content
Used to return a (partial) list of forums along with the number of forums in the found set. Similar to CategoryData, but the forums need not be from the same category. Instead, this returns forums that match a common attribute acoss all categores.
Returned by:
GET /api/v3/forum/favorites
GET /api/v3/forum/owner
-
Paginates the list of forum threads.
paginator.total
is the total number of forums that match the request parameters.limit
andstart
define a slice of the total results set being returned inforumThreads
.Declaration
Swift
var paginator: Paginator
-
A slice of the set of forum threads that match the request parameters.
Declaration
Swift
var forumThreads: [ForumListData]