/* Options: Date: 2025-08-04 03:37:37 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrowseAllCommodityCode.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/commoditycode", Verbs="GET") open class BrowseAllCommodityCode : IReturn, IGet { companion object { private val responseType = BrowseAllCommodityCodeResponse::class.java } override fun getResponseType(): Any? = BrowseAllCommodityCode.responseType } open class BrowseAllCommodityCodeResponse : ResponseBase() { var CommodityCodes:ArrayList = ArrayList() } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class CommodityCodeSimple { var Id:Int? = null var CategoryCode:String? = null var CategoryName:String? = null var SubCategoryCode:String? = null var SubCategoryName:String? = null var MainCategoryCode:String? = null var MainCategoryName:String? = null }