/* Options: Date: 2025-12-06 05:18:03 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: DropboxShareRequestExtended.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/DropboxShareExtended/{ContactId}/{AttachmentId}/{SharerAgentId}", "GET,OPTIONS") // @Route("/v1/DropboxShareExtended/DB/{AttachmentId}/{SharerAgentId}", "GET,OPTIONS") public class DropboxShareRequestExtended : IReturn, Codable { public typealias Return = DropboxShareResponseExtended public var contactId:Int? public var attachmentId:String? public var sharerAgentId:Int? required public init(){} } public class DropboxShareResponseExtended : Codable { public var responseStatus:ResponseStatus? public var dropboxShareExtended:[DropboxShareExtended] = [] required public init(){} } public class DropboxShareExtended : Codable { public var dropboxShareId:Int? public var sharerAgentId:Int? public var contactId:Int? public var projectId:Int? public var agentId:Int? public var firstName:String? public var lastName:String? public var attachmentId:String? public var canShare:Bool? required public init(){} }