/* Options: Date: 2024-12-22 12:44:05 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: GetUserPostCommentVotes.* //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="/user/comments/votes") open class GetUserPostCommentVotes : IReturn, IGet { open var postId:Long? = null companion object { private val responseType = GetUserPostCommentVotesResponse::class.java } override fun getResponseType(): Any? = GetUserPostCommentVotes.responseType } open class GetUserPostCommentVotesResponse { open var postId:Long? = null open var upVotedCommentIds:ArrayList? = null open var downVotedCommentIds:ArrayList? = null }