/* Options: Date: 2024-04-28 04:51:37 Version: 8.13 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: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/posts/{PostId}/comments/{Id}/report", Verbs="PUT") open class UserPostCommentReport : IReturn, IPut { var id:Long? = null var postId:Long? = null var flagType:FlagType? = null var reportNotes:String? = null companion object { private val responseType = UserPostCommentReportResponse::class.java } override fun getResponseType(): Any? = UserPostCommentReport.responseType } open class UserPostCommentReportResponse { var responseStatus:ResponseStatus? = null } enum class FlagType { Violation, Spam, Abusive, Confidential, OffTopic, Other, }