/* Options: Date: 2024-04-27 08:40:55 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: CreatePostComment.* //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", Verbs="POST") open class CreatePostComment : IReturn, IPost { var postId:Long? = null var replyId:Long? = null var content:String? = null companion object { private val responseType = CreatePostCommentResponse::class.java } override fun getResponseType(): Any? = CreatePostComment.responseType } open class CreatePostCommentResponse { var id:Long? = null var postId:Long? = null var responseStatus:ResponseStatus? = null }