/* Options: Date: 2025-12-11 18:23:44 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //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(DataType="int", IsRequired=true) public Integer Id = null; /** * Request a file by it's filename. */ @ApiMember(Description="Request a file by it's filename.") public String FileName = 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 Integer getId() { return Id; } public GetFile setId(Integer value) { this.Id = value; return this; } public String getFileName() { return FileName; } public GetFile setFileName(String value) { this.FileName = value; return this; } public Boolean isStream() { return Stream; } public GetFile setStream(Boolean value) { this.Stream = value; return this; } } }