/* Options: Date: 2025-12-06 06:28:07 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetFile.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/file", Verbs="GET") // @Route(Path="/file/{id}", Verbs="GET") open class GetFile { @ApiMember(IsRequired=true) var Id:String? = null /** * 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.") var Stream:Boolean? = null }