/* Options: Date: 2025-12-06 05:24:21 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DropboxShareRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/DropboxShare/{ContactId}/{AgentId}/{AttachmentId}/{SharerAgentId}", "POST,OPTIONS") // @Route("/v1/DropboxShare/{AgentId}/{AttachmentId}/{SharerAgentId}", "POST,OPTIONS") // @Route("/v1/DropboxShare/{DropboxShareId}", "DELETE,OPTIONS") // @Route("/v1/DropboxShare/{DropboxShareId}/{canShare}", "PUT,OPTIONS") public class DropboxShareRequest : IReturn, Codable { public typealias Return = DropboxShareResponse public var contactId:Int? public var dropboxShareId:Int? public var agentId:Int? public var attachmentId:String? public var sharerAgentId:Int? public var canShare:Bool? required public init(){} } public class DropboxShareResponse : Codable { public var responseStatus:ResponseStatus? required public init(){} }