ReportModerationData
public struct ReportModerationData : ContentUsed to return data about Reports submitted by users. Only Moderators and above have access.
Required by:
- GET /api/v3/mod/reports
- 
                  
                  The id of the report. DeclarationSwift var id: UUID
- 
                  
                  The type of content being reported DeclarationSwift var type: ReportType
- 
                  
                  The ID of the reported entity. Could resolve to an Int or a UUID, depending on the value of type.DeclarationSwift var reportedID: String
- 
                  
                  The user that authored the content being reported.. DeclarationSwift var reportedUser: UserHeader
- 
                  
                  Text the report author wrote when submitting the report. DeclarationSwift var submitterMessage: String?
- 
                  
                  The user that submitted the report–NOT the user whose content is being reported. DeclarationSwift var author: UserHeader
- 
                  
                  The mod who handled (or closed) the report. DeclarationSwift var handledBy: UserHeader?
- 
                  
                  TRUE if the report has been closed by moderators. DeclarationSwift var isClosed: Bool
- 
                  
                  The time the submitter filed the report. DeclarationSwift var creationTime: Date
- 
                  
                  The last time the report has been modified. DeclarationSwift var updateTime: Date
- 
                  
                  DeclarationSwift init(req: Request, report: Report) throws
 View on GitHub
            View on GitHub
           ReportModerationData Structure Reference
      ReportModerationData Structure Reference