/* Options: Date: 2025-12-06 06:28:06 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //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(IsRequired=true) public var id: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(){} }