/* Options: Date: 2025-12-06 05:24:27 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: DropboxShareRequest.* //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/DropboxShare/{ContactId}/{AgentId}/{AttachmentId}/{SharerAgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/DropboxShare/{AgentId}/{AttachmentId}/{SharerAgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/DropboxShare/{DropboxShareId}", Verbs="DELETE,OPTIONS") // @Route(Path="/v1/DropboxShare/{DropboxShareId}/{canShare}", Verbs="PUT,OPTIONS") open class DropboxShareRequest : IReturn { open var ContactId:Int? = null open var DropboxShareId:Int? = null open var AgentId:Int? = null open var AttachmentId:UUID? = null open var SharerAgentId:Int? = null open var canShare:Boolean? = null companion object { private val responseType = DropboxShareResponse::class.java } override fun getResponseType(): Any? = DropboxShareRequest.responseType } open class DropboxShareResponse { open var ResponseStatus:ResponseStatus? = null }