/* Options: Date: 2025-12-06 05:26:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StationsRequest.* //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="/v1/Stations", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/Stations/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/StationsByLocation/{LocationId}", Verbs="GET,OPTIONS") open class StationsRequest : IReturn { open var Id:UUID? = null open var LocationId:UUID? = null open var Stations:ArrayList = ArrayList() companion object { private val responseType = StationsResponse::class.java } override fun getResponseType(): Any? = StationsRequest.responseType } open class StationsResponse { open var ResponseStatus:ResponseStatus? = null open var Stations:ArrayList = ArrayList() } open class Station { open var Id:UUID? = null open var LocationId:UUID? = null open var LocationName:String? = null open var StationName:String? = null open var Active:Boolean? = null }