/* Options: Date: 2025-12-06 06:25:40 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetFile.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/file", Verbs="GET") // @Route(Path="/file/{id}", Verbs="GET") public static class GetFile { @ApiMember(IsRequired=true) public String Id = 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.") public Boolean Stream = null; public String getId() { return Id; } public GetFile setId(String value) { this.Id = value; return this; } public Boolean isStream() { return Stream; } public GetFile setStream(Boolean value) { this.Stream = value; return this; } } }