/* Options: Date: 2026-01-27 18:37:16 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetScanStarted.* //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="/{Brand}/scanstarted", Verbs="GET") public static class GetScanStarted extends RequestBase implements IReturn { private static Object responseType = GetScanStartedResponse.class; public Object getResponseType() { return responseType; } } public static class GetScanStartedResponse extends ResponseBase { public Boolean ScanStarted = null; public Boolean isScanStarted() { return ScanStarted; } public GetScanStartedResponse setScanStarted(Boolean value) { this.ScanStarted = value; return this; } } public static enum Brand { Desktop, Hp, Kyocera, NeaScan, Samsung, FujiXerox, Ta, Utax, Epson, ScanFront400, Sharp, Ricoh, FujiFilm; } public static class RequestBase extends DtoBase { } public static class ResponseBase extends DtoBase { public String SelectedUiLanguage = null; public String svSession = null; public String Title = null; public String PageTip = null; public Boolean NewBrowser = null; public Boolean ScanFront400TA = null; public Boolean ScanFront400UTAX = null; public String getSelectedUiLanguage() { return SelectedUiLanguage; } public ResponseBase setSelectedUiLanguage(String value) { this.SelectedUiLanguage = value; return this; } public String getSvSession() { return svSession; } public ResponseBase setSvSession(String value) { this.svSession = value; return this; } public String getTitle() { return Title; } public ResponseBase setTitle(String value) { this.Title = value; return this; } public String getPageTip() { return PageTip; } public ResponseBase setPageTip(String value) { this.PageTip = value; return this; } public Boolean isNewBrowser() { return NewBrowser; } public ResponseBase setNewBrowser(Boolean value) { this.NewBrowser = value; return this; } public Boolean isScanFront400TA() { return ScanFront400TA; } public ResponseBase setScanFront400TA(Boolean value) { this.ScanFront400TA = value; return this; } public Boolean isScanFront400UTAX() { return ScanFront400UTAX; } public ResponseBase setScanFront400UTAX(Boolean value) { this.ScanFront400UTAX = value; return this; } } public static class DtoBase { public Brand Brand = null; public Brand getBrand() { return Brand; } public DtoBase setBrand(Brand value) { this.Brand = value; return this; } } }