/* Options: Date: 2025-09-23 03:00:29 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: UpdateProduct.* //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="PUT") open class UpdateProduct : IReturn { var id:String? = null var name:String? = null var description:String? = null var price:BigDecimal? = null var productType:String? = null var year:Int? = null var applicationId:String? = null var requiredProductId:String? = null var scope:String? = null var feature:String? = null var childProductIds:ArrayList = ArrayList() var volumeDiscounts:HashMap = HashMap() companion object { private val responseType = UpdateProductResponse::class.java } override fun getResponseType(): Any? = UpdateProduct.responseType } open class UpdateProductResponse { var message:String? = null var status:HttpStatusCode? = null var responseStatus:ResponseStatus? = null }