/* Options: Date: 2025-12-06 07:07:15 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllWearPriceProfileRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/wear_price_profile/get_all", Verbs="GET") open class GetAllWearPriceProfileRequest : IReturn, IGet { companion object { private val responseType = GetAllWearPriceProfileResponse::class.java } override fun getResponseType(): Any? = GetAllWearPriceProfileRequest.responseType } open class GetAllWearPriceProfileResponse { open var wearPriceProfiles:ArrayList = ArrayList() } open class BusinessWearPriceProfileDto { open var id:Long? = null open var label:String? = null open var slug:String? = null }