(* Options: Date: 2026-08-01 16:49:50 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PostQuestion.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace ScannerVision.WebService.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Collections.ObjectModel type Brand = | Desktop = 0 | Hp = 1 | Kyocera = 2 | NeaScan = 3 | Samsung = 4 | FujiXerox = 5 | Ta = 6 | Utax = 7 | Epson = 8 | ScanFront400 = 9 | Sharp = 10 | Ricoh = 11 | FujiFilm = 12 | Brother = 13 [] type DtoBase() = member val Brand:Brand = new Brand() with get,set [] type RequestBase() = inherit DtoBase() [] type QuestionRequestDto() = inherit RequestBase() member val TemplateGuid:String = null with get,set member val QuestionGuid:String = null with get,set member val Parent:String = null with get,set member val FolderBrowser:String = null with get,set [] [] type PostQuestion() = inherit QuestionRequestDto() member val QuestionValueReturned:String = null with get,set member val QuestionValueDisplayed:String = null with get,set member val SelectedFolder:String = null with get,set