/* Options: Date: 2026-01-22 01:52:04 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPriceTypes.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/v1/utils/price-types", Verbs="GET") open class GetPriceTypes : IReturn, IGet { companion object { private val responseType = GetPriceTypesResponse::class.java } override fun getResponseType(): Any? = GetPriceTypes.responseType } open class GetPriceTypesResponse : BaseResponse() { var priceTypes:ArrayList = ArrayList() } open class Status { var message:String? = null var statusCode:Int? = null } open class BaseResponse { var status:Status? = null } open class PriceType { var id:Int? = null @Required() @StringLength(50) var name:String? = null }