CategoryData
public struct CategoryData : ContentUsed to return the ID and title of a Category.
Returned by:
- GET /api/v3/forum/categories
- GET /api/v3/forum/catgories/ID
- 
                  
                  The ID of the category. DeclarationSwift var categoryID: UUID
- 
                  
                  The title of the category. DeclarationSwift var title: String
- 
                  
                  The purpose string for the category. DeclarationSwift var purpose: String
- 
                  
                  If TRUE, the user cannot create/modify threads in this forum. Should be sorted to top of category list. DeclarationSwift var isRestricted: Bool
- 
                  
                  if TRUE, this category is for Event Forums, and is prepopulated with forum threads for each Schedule Event. DeclarationSwift var isEventCategory: Bool
- 
                  
                  The number of threads in this category DeclarationSwift var numThreads: Int32
- 
                  
                  The threads in the category. Only populated for /categories/ID. DeclarationSwift var forumThreads: [ForumListData]?
- 
                  
                  DeclarationSwift init(_ cat: Category, restricted: Bool, forumThreads: [ForumListData]? = nil) throws
 View on GitHub
            View on GitHub
           CategoryData Structure Reference
      CategoryData Structure Reference