/* Options: Date: 2025-09-22 22:15:34 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: CreateProduct.* //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", Verbs="POST") open class CreateProduct : 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 volumeDiscounts:HashMap = HashMap() companion object { private val responseType = CreateProductResponse::class.java } override fun getResponseType(): Any? = CreateProduct.responseType } open class CreateProductResponse { var message:String? = null var status:HttpStatusCode? = null var responseStatus:ResponseStatus? = null }