/* Options: Date: 2025-10-27 21:33:56 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SCADFiles.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/files", "GET") // @Route("/files", "POST") // @Route("/files/{Path*}", "GET") // @Route("/files/{Path*}", "POST") // @Route("/files/{Path*}", "DELETE") public class SCADFiles : Codable { /** * File path */ // @ApiMember(Description="File path") public var path:String? /** * Contents of a file. NOTE: This is not yet supported in the API */ // @ApiMember(Description="Contents of a file. NOTE: This is not yet supported in the API") public var textContents:String? /** * Whether or not you want to download the file. */ // @ApiMember(Description="Whether or not you want to download the file.") public var forDownload:Bool? /** * Where the files are hosted. If the source is not specified, your default source will be used */ // @ApiMember(Description="Where the files are hosted. If the source is not specified, your default source will be used") public var source:String? required public init(){} }