/* Options: Date: 2025-09-22 22:19:49 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: DeleteProduct.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/products/{id}", Verbs="DELETE") open class DeleteProduct : IReturn { var id:String? = null companion object { private val responseType = DeleteProductResponse::class.java } override fun getResponseType(): Any? = DeleteProduct.responseType } open class DeleteProductResponse { var message:String? = null var status:HttpStatusCode? = null var responseStatus:ResponseStatus? = null }