/* Options: Date: 2025-12-10 20:15:54 SwiftVersion: 5.0 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetFile.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/file", "GET") // @Route("/file/{id}", "GET") public class GetFile : Codable { // @ApiMember(DataType="int", IsRequired=true) public var id:Int /** * Request a file by it's filename. */ // @ApiMember(Description="Request a file by it's filename.") public var fileName:String /** * Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading. */ // @ApiMember(Description="Changes how the file is send by the server. Set to true to try and open the file in a browser without downloading.") public var stream:Bool required public init(){} }