/* Options: Date: 2024-09-21 00:59:50 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: UserPostVote.* //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/{Id}/vote", Verbs="PUT") open class UserPostVote : IReturn, IPut { var id:Long? = null var weight:Int? = null companion object { private val responseType = UserPostVoteResponse::class.java } override fun getResponseType(): Any? = UserPostVote.responseType } open class UserPostVoteResponse { var responseStatus:ResponseStatus? = null }