/* Options: Date: 2025-09-23 02:59:52 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteApplication.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/applications/{id}", Verbs="DELETE") open class DeleteApplication : IReturn { var id:String? = null companion object { private val responseType = DeleteApplicationResponse::class.java } override fun getResponseType(): Any? = DeleteApplication.responseType } open class DeleteApplicationResponse { var message:String? = null var status:HttpStatusCode? = null }