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