/* Options: Date: 2024-12-22 12:18:56 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UserPostCommentReport.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/posts/{PostId}/comments/{Id}/report", Verbs="PUT") open class UserPostCommentReport : IReturn, IPut { open var id:Long? = null open var postId:Long? = null open var flagType:FlagType? = null open var reportNotes:String? = null companion object { private val responseType = UserPostCommentReportResponse::class.java } override fun getResponseType(): Any? = UserPostCommentReport.responseType } open class UserPostCommentReportResponse { open var responseStatus:ResponseStatus? = null } enum class FlagType { Violation, Spam, Abusive, Confidential, OffTopic, Other, }