ForumData
public struct ForumData : ContentUsed to return the contents of a Forum.
Returned by:
- POST /api/v3/forum/categories/ID/create
- GET /api/v3/forum/ID
- GET /api/v3/events/ID/forum
See ForumController.forumCreateHandler(_:data:), ForumController.forumHandler(_:),
EventController.eventForumHandler(_:).
- 
                  
                  The forum’s ID. DeclarationSwift var forumID: UUID
- 
                  
                  The ID of the forum’s containing Category.. DeclarationSwift var categoryID: UUID
- 
                  
                  The forum’s title DeclarationSwift var title: String
- 
                  
                  The forum’s creator. DeclarationSwift var creator: UserHeader
- 
                  
                  Whether the forum is in read-only state. DeclarationSwift var isLocked: Bool
- 
                  
                  Whether the user has favorited forum. DeclarationSwift var isFavorite: Bool
- 
                  
                  Whether the user has muted the forum. DeclarationSwift var isMuted: Bool
- 
                  
                  Posts in the forum. DeclarationSwift var posts: [PostData]
- 
                  
                  If this forum is for an Event on the schedule, the ID of the event. DeclarationSwift var eventID: UUID?
- 
                  
                  If this forum is pinned or not. DeclarationSwift var isPinned: Bool?
- 
                  
                  DeclarationSwift init( forum: Forum, creator: UserHeader, isFavorite: Bool, isMuted: Bool, posts: [PostData], pager: Paginator, event: Event? = nil ) throws
 View on GitHub
            View on GitHub
           ForumData Structure Reference
      ForumData Structure Reference