/* Options: Date: 2024-04-29 14:51:22 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: DeletePost.* //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}", Verbs="DELETE") open class DeletePost : IReturn, IDelete { var id:Long? = null companion object { private val responseType = DeletePostResponse::class.java } override fun getResponseType(): Any? = DeletePost.responseType } open class DeletePostResponse { var id:Long? = null var responseStatus:ResponseStatus? = null }