(* Options: Date: 2026-01-27 18:43:00 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetJsonPicklistItems.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ScannerVision.WebService.Json.Dto open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Collections.ObjectModel open System.IO [] type JsonDto() = class end [] type JsonPicklistItemsResponse() = inherit JsonDto() member val Guid:String = null with get,set member val Items:JsonPicklistItem[] = [||] with get,set [] type GetJsonPicklistItems() = inherit JsonDto() interface IReturn member val TemplateGuid:String = null with get,set member val Guid:String = null with get,set member val Answers:IDictionary = null with get,set