/* Options: Date: 2026-08-01 16:52:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BrotherTemplateQuestionResponse.* //ExcludeTypes: //DefaultImports: */ export enum Brand { Desktop = 'Desktop', Hp = 'Hp', Kyocera = 'Kyocera', NeaScan = 'NeaScan', Samsung = 'Samsung', FujiXerox = 'FujiXerox', Ta = 'Ta', Utax = 'Utax', Epson = 'Epson', ScanFront400 = 'ScanFront400', Sharp = 'Sharp', Ricoh = 'Ricoh', FujiFilm = 'FujiFilm', Brother = 'Brother', } export class DtoBase { public Brand: Brand; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RequestBase extends DtoBase { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class QuestionRequestDto extends RequestBase { public TemplateGuid: string; public QuestionGuid: string; public Parent: string; public FolderBrowser: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export interface IClientQuestion extends ITemplateQuestion { QuestionGuid: string; ValueDisplayed: string; ValueReturned: string; Answered: boolean; RegexMatches: boolean; RegexHint: string; } export enum TemplateQuestionType { Edit = 'Edit', List = 'List', EditList = 'EditList', Browse = 'Browse', Password = 'Password', Date = 'Date', Time = 'Time', Boolean = 'Boolean', Integer = 'Integer', Double = 'Double', BrowseList = 'BrowseList', } export interface ITemplatePicklist extends IStatus { Guid: string; } export interface ITemplateQuestion extends IStatus { TagName: string; Question: string; Tooltip: string; DefaultValue: string; HideDefaultValue?: boolean; Regex: string; Sample: string; QuestionType?: TemplateQuestionType; MinimumSize?: number; MaximumSize?: number; IsRequired?: boolean; Picklist: ITemplatePicklist; } export interface IStatus extends IInterface { Status?: boolean; } export interface IInterface { } // @Route("/{Brand}/templates/{TemplateGuid}/submit") export class BrotherTemplateQuestionResponse extends QuestionRequestDto { public Question: IClientQuestion; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'BrotherTemplateQuestionResponse'; } public getMethod() { return 'POST'; } public createResponse() {} }