/* Options: Date: 2025-09-14 16:01:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PriceCalculationTypeQuery.* //ExcludeTypes: //InitializeCollections: False //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="/services/prices/calculationtypes", Verbs="GET") open class PriceCalculationTypeQuery : IReturn { companion object { private val responseType = PriceCalculationTypeResponse::class.java } override fun getResponseType(): Any? = PriceCalculationTypeQuery.responseType } open class PriceCalculationTypeResponse { open var Id:Int? = null open var Name:String? = null open var Description:String? = null }