/* Options: Date: 2025-08-02 23:50:39 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://monitoring.ox2.com/BazeField.Services/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeviceInfoGetRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/configuration/objects/{ObjectIds}/devices", Verbs="GET, POST") open class DeviceInfoGetRequest : IReturn { var objectIds:ArrayList = ArrayList() companion object { private val responseType = DeviceInfoGetResponse::class.java } override fun getResponseType(): Any? = DeviceInfoGetRequest.responseType } open class DeviceInfoGetResponse { var devices:HashMap = HashMap() } open class DeviceInfoEntity { var id:Int? = null var description:String? = null var name:String? = null var loadOrder:Int? = null var nodeId:UUID? = null var nodeName:String? = null var protocolId:Int? = null var protocolName:String? = null var connectionString:String? = null }