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