/* Options: Date: 2025-12-06 07:52:34 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: AgentStateLicenseRequest.* //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/AgentStateLicense/{AgentRegistrationTempId}", Verbs="GET,POST,OPTIONS") open class AgentStateLicenseRequest : IReturn { open var AgentStateLicense:ArrayList = ArrayList() open var AgentRegistrationTempId:Int? = null companion object { private val responseType = AgentStateLicenseResponse::class.java } override fun getResponseType(): Any? = AgentStateLicenseRequest.responseType } open class AgentStateLicenseResponse { open var ResponseStatus:ResponseStatus? = null open var AgentStateLicense:ArrayList = ArrayList() } open class AgentStateLicense { open var AgentRegistrationTempId:Int? = null open var State:String? = null open var LicenseNum:String? = null }