/* Options: Date: 2025-12-06 07:05:03 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: DropboxShareRequestExtended.* //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/DropboxShareExtended/{ContactId}/{AttachmentId}/{SharerAgentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/DropboxShareExtended/DB/{AttachmentId}/{SharerAgentId}", Verbs="GET,OPTIONS") open class DropboxShareRequestExtended : IReturn { open var ContactId:Int? = null open var AttachmentId:String? = null open var SharerAgentId:Int? = null companion object { private val responseType = DropboxShareResponseExtended::class.java } override fun getResponseType(): Any? = DropboxShareRequestExtended.responseType } open class DropboxShareResponseExtended { open var ResponseStatus:ResponseStatus? = null open var DropboxShareExtended:ArrayList = ArrayList() } open class DropboxShareExtended { open var DropboxShareId:Int? = null open var SharerAgentId:Int? = null open var ContactId:Int? = null open var ProjectId:Int? = null open var AgentId:Int? = null open var FirstName:String? = null open var LastName:String? = null open var AttachmentId:UUID? = null open var CanShare:Boolean? = null }