(* Options: Date: 2026-09-21 22:53:52 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: PBL_ShowQuantities.* //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 PBL_StandardResponse() = member val Success:Boolean = new Boolean() with get,set member val Error:String = null with get,set member val Result:Object = null with get,set member val Color:String = null with get,set [] [] type PBL_ShowQuantities() = interface IReturn /// ///Positions identifying the LED locations /// [] member val Positions:ResizeArray = null with get,set /// ///Quantities: Number of LED to show corresponding to each position /// [] member val Quantities:ResizeArray = null with get,set /// ///Optional: Animated effect selection: 0 = Always ON (no effect, default), 1 = BLINK_NORMAL, 2 = BLINK_FAST, 3 = BLINK_SLOW, 4 = FADE_IN_OUT_NORMAL, 5 = FADE_IN_OUT_FAST, 6 = FADE_IN_OUT_SLOW, 7 = FADE_OUT_NORMAL, 8 = FADE_OUT_FAST, 9 = FADE_OUT_SLOW /// [] member val Effect:Nullable = new Nullable() with get,set /// ///Optional: HTML Color code (e.g. FF00FF) /// [] member val Color:String = null with get,set /// ///Optional: When set to true, it turns off the same color in a previous position /// [] member val HidePreviousPosition:Nullable = new Nullable() with get,set /// ///Optional: Name of the owner of the color/command to allow color sharing /// [] member val Owner:String = null with get,set /// ///Optional: name of the stockroom where the positions are located /// [] member val StockroomName:String = null with get,set