/* Options: Date: 2026-08-01 16:49:52 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BrotherTemplateQuestionResponse.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/{Brand}/templates/{TemplateGuid}/submit") public static class BrotherTemplateQuestionResponse extends QuestionRequestDto { public IClientQuestion Question = null; public IClientQuestion getQuestion() { return Question; } public BrotherTemplateQuestionResponse setQuestion(IClientQuestion value) { this.Question = value; return this; } } public static enum Brand { Desktop, Hp, Kyocera, NeaScan, Samsung, FujiXerox, Ta, Utax, Epson, ScanFront400, Sharp, Ricoh, FujiFilm, Brother; } public static class RequestBase extends DtoBase { } public static class QuestionRequestDto extends RequestBase { public String TemplateGuid = null; public String QuestionGuid = null; public String Parent = null; public String FolderBrowser = null; public String getTemplateGuid() { return TemplateGuid; } public QuestionRequestDto setTemplateGuid(String value) { this.TemplateGuid = value; return this; } public String getQuestionGuid() { return QuestionGuid; } public QuestionRequestDto setQuestionGuid(String value) { this.QuestionGuid = value; return this; } public String getParent() { return Parent; } public QuestionRequestDto setParent(String value) { this.Parent = value; return this; } public String getFolderBrowser() { return FolderBrowser; } public QuestionRequestDto setFolderBrowser(String value) { this.FolderBrowser = value; return this; } } public static interface IClientQuestion implements ITemplateQuestion { public String QuestionGuid = null; public String ValueDisplayed = null; public String ValueReturned = null; public Boolean Answered = null; public Boolean RegexMatches = null; public String RegexHint = null; } public static class DtoBase { public Brand Brand = null; public Brand getBrand() { return Brand; } public DtoBase setBrand(Brand value) { this.Brand = value; return this; } } public static enum TemplateQuestionType { Edit, List, EditList, Browse, Password, Date, Time, Boolean, Integer, Double, BrowseList; } public static interface ITemplatePicklist implements IStatus { public String Guid = null; } public static interface ITemplateQuestion implements IStatus { public String TagName = null; public String Question = null; public String Tooltip = null; public String DefaultValue = null; public Boolean HideDefaultValue = null; public String Regex = null; public String Sample = null; public TemplateQuestionType QuestionType = null; public Integer MinimumSize = null; public Integer MaximumSize = null; public Boolean IsRequired = null; public ITemplatePicklist Picklist = null; } public static interface IStatus implements IInterface { public Boolean Status = null; } public static interface IInterface { } }