/* Options: Date: 2025-12-10 20:15:55 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //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(DataType="int", IsRequired=true) var Id:Int? = null /** * Request a file by it's filename. */ @ApiMember(Description="Request a file by it's filename.") var FileName: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 }