/* Options: Date: 2026-09-21 23:52:14 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: AllOffLedController.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/AllOffLedController/{LCAddress}") class AllOffLedController implements IConvertible, IPost { /** * Led Controller Address */ // @ApiMember(Description="Led Controller Address", IsRequired=true) String? LCAddress; /** * Optional: delay the execution of the command (in seconds) */ // @ApiMember(Description="Optional: delay the execution of the command (in seconds)") int? Delay; /** * Optional: name of the stockroom where the area is located */ // @ApiMember(Description="Optional: name of the stockroom where the area is located") String? StockroomName; AllOffLedController({this.LCAddress,this.Delay,this.StockroomName}); AllOffLedController.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LCAddress = json['LCAddress']; Delay = json['Delay']; StockroomName = json['StockroomName']; return this; } Map toJson() => { 'LCAddress': LCAddress, 'Delay': Delay, 'StockroomName': StockroomName }; getTypeName() => "AllOffLedController"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'AllOffLedController': TypeInfo(TypeOf.Class, create:() => AllOffLedController()), });