/* Options: Date: 2024-04-28 06:29:29 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: UserPostCommentVote.* //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}", Verbs="GET") open class UserPostCommentVote : IReturn, IGet { var id:Long? = null var postId:Long? = null var weight:Int? = null companion object { private val responseType = UserPostCommentVoteResponse::class.java } override fun getResponseType(): Any? = UserPostCommentVote.responseType } open class UserPostCommentVoteResponse { var responseStatus:ResponseStatus? = null }