/* Options: Date: 2025-09-22 22:23:55 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: GetCoupon.* //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="GET") open class GetCoupon : IReturn { var id:Int? = null companion object { private val responseType = CouponDto::class.java } override fun getResponseType(): Any? = GetCoupon.responseType } open class CouponDto { var id:Int? = null var name:String? = null var description:String? = null var effectiveDate:Date? = null var discountType:String? = null var productDiscounts:HashMap = HashMap() }