/* Options: Date: 2026-09-21 22:54:23 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ShowMultipleEx.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class KeyToDisplay implements IConvertible { /** * Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) String? Key; /** * Blinking or not */ // @ApiMember(Description="Blinking or not", IsRequired=true) bool? Blink; /** * Indicates whether we show the area header of the blinking key or not */ // @ApiMember(Description="Indicates whether we show the area header of the blinking key or not", IsRequired=true) bool? ShowHeader; KeyToDisplay({this.Key,this.Blink,this.ShowHeader}); KeyToDisplay.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; Blink = json['Blink']; ShowHeader = json['ShowHeader']; return this; } Map toJson() => { 'Key': Key, 'Blink': Blink, 'ShowHeader': ShowHeader }; getTypeName() => "KeyToDisplay"; TypeContext? context = _ctx; } // @Route("/ShowMultipleEx/{Color}/{Persistant}") class ShowMultipleEx implements IConvertible, IPost { /** * HTML Color code (e.g. FF00FF) */ // @ApiMember(Description="HTML Color code (e.g. FF00FF)", IsRequired=true) String? Color; /** * When set to false, it turns off the same color in a previous position */ // @ApiMember(Description="When set to false, it turns off the same color in a previous position", IsRequired=true) bool? Persistant; /** * List of key object (KeyToDisplay) to display */ // @ApiMember(Description="List of key object (KeyToDisplay) to display", IsRequired=true) List? Keys = []; /** * Optional: delay the execution of the command (in seconds) */ // @ApiMember(Description="Optional: delay the execution of the command (in seconds)") int? Delay; /** * Optional: duration of the show in seconds */ // @ApiMember(Description="Optional: duration of the show in seconds") int? Duration; /** * Optional: name of the stockroom where to show the position */ // @ApiMember(Description="Optional: name of the stockroom where to show the position") String? StockroomName; /** * Name of the owner of the color/command to allow color sharing */ // @ApiMember(Description="Name of the owner of the color/command to allow color sharing") String? Owner; ShowMultipleEx({this.Color,this.Persistant,this.Keys,this.Delay,this.Duration,this.StockroomName,this.Owner}); ShowMultipleEx.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Color = json['Color']; Persistant = json['Persistant']; Keys = JsonConverters.fromJson(json['Keys'],'List',context!); Delay = json['Delay']; Duration = json['Duration']; StockroomName = json['StockroomName']; Owner = json['Owner']; return this; } Map toJson() => { 'Color': Color, 'Persistant': Persistant, 'Keys': JsonConverters.toJson(Keys,'List',context!), 'Delay': Delay, 'Duration': Duration, 'StockroomName': StockroomName, 'Owner': Owner }; getTypeName() => "ShowMultipleEx"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'KeyToDisplay': TypeInfo(TypeOf.Class, create:() => KeyToDisplay()), 'ShowMultipleEx': TypeInfo(TypeOf.Class, create:() => ShowMultipleEx()), 'List': TypeInfo(TypeOf.Class, create:() => []), });