/* Options: Date: 2026-09-21 22:55:02 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: AllOff.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/AllOff") class AllOff implements IConvertible, IPost { /** * 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; /** * Optional: IP address of the bus controller where to send the AllOff */ // @ApiMember(Description="Optional: IP address of the bus controller where to send the AllOff") String? BCIPAddress; AllOff({this.Delay,this.StockroomName,this.BCIPAddress}); AllOff.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Delay = json['Delay']; StockroomName = json['StockroomName']; BCIPAddress = json['BCIPAddress']; return this; } Map toJson() => { 'Delay': Delay, 'StockroomName': StockroomName, 'BCIPAddress': BCIPAddress }; getTypeName() => "AllOff"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'AllOff': TypeInfo(TypeOf.Class, create:() => AllOff()), });