(* Options: Date: 2026-03-13 22:06:34 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: barcode.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace WS_RESTRICTED_API open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type eapi_barcode_type_enum = | code39 = 0 | ean13 = 1 | qrcode = 2 [] [] type barcode() = interface IReturn /// ///barcode type /// [] member val BarcodeType:eapi_barcode_type_enum = new eapi_barcode_type_enum() with get,set /// ///barcode value /// [] member val BarcodeValue:String = null with get,set