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