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