(* Options: Date: 2026-09-21 22:52:34 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: RegisterCallback.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace GoToLightAPI open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type RegisterCallback() = /// ///Callback on which to get registered (e.g. SetPosition) /// [] member val Name:String = null with get,set /// ///Callback URL /// [] member val CallbackURL:String = null with get,set /// ///Optional: Callback username /// [] member val CallbackUsername:String = null with get,set /// ///Optional: Callback password /// [] member val CallbackPassword:String = null with get,set /// ///Optional: Callback authorization /// [] member val CallbackAuthorization:String = null with get,set /// ///Optional: niveau de détail souhaité pour les événements touch (rétro-compatibilité), interprété comme un masque de bits (Gestures=1, Detailed=2). 0 = Legacy (défaut, payload historique string position) ; 1 = Gestures (JSON: Click/DoubleClick/LongPress + durationMs) ; 2 = Detailed (JSON: position, edge Down/Up, timestampUtc, seq) ; 3 = Both (Gestures + Detailed). Absent ou 0 => comportement inchangé pour les clients existants. /// [ comportement inchangé pour les clients existants.")>] member val DetailLevel:Int32 = new Int32() with get,set