/* Options: Date: 2025-12-06 09:32:56 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: CalendarLinkRequest.* //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/CalendarLink/{AgentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/CalendarLink/{LinkAgentId}/{AgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/CalendarLink/{Id}/{Active}", Verbs="PUT,OPTIONS") // @Route(Path="/v1/CalendarLink/{Id}", Verbs="DELETE,OPTIONS") open class CalendarLinkRequest : IReturn { open var AgentId:Int? = null open var LinkAgentId:Int? = null open var Id:Int? = null open var Active:Boolean? = null companion object { private val responseType = CalendarLinkResponse::class.java } override fun getResponseType(): Any? = CalendarLinkRequest.responseType } open class CalendarLinkResponse { open var ResponseStatus:ResponseStatus? = null open var CalendarLink:ArrayList = ArrayList() } open class CalendarLink { open var Id:Int? = null open var CalendarId:UUID? = null open var FirstName:String? = null open var LastName:String? = null open var AgentId:Int? = null open var Active:Boolean? = null }