/* Options: Date: 2025-12-06 05:27:25 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: AgentDeviceRequest.* //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/AgentDevice", Verbs="POST, OPTIONS") // @Route(Path="/v1/AgentDevice/{DeviceId}", Verbs="GET, DELETE, OPTIONS") open class AgentDeviceRequest : IReturn { open var AgentDevice:AgentDevice? = null open var DeviceId:String? = null companion object { private val responseType = AgentDeviceResponse::class.java } override fun getResponseType(): Any? = AgentDeviceRequest.responseType } open class AgentDeviceResponse { open var ResponseStatus:ResponseStatus? = null open var AgentDevice:AgentDevice? = null } open class AgentDevice { open var AgentDeviceId:Int? = null open var UserId:UUID? = null open var DeviceId:String? = null open var Model:String? = null open var Platform:String? = null open var UUID:String? = null }