/* Options: Date: 2025-12-11 09:08:12 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.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(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 }