/* Options: Date: 2025-12-06 04:35:08 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.bengabet.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IssueServiceCommand.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/cmd/service/command") class IssueServiceCommand implements IReturn, IConvertible, IPost { String? id; String? command; IssueServiceCommand({this.id,this.command}); IssueServiceCommand.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; command = json['command']; return this; } Map toJson() => { 'id': id, 'command': command }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "IssueServiceCommand"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 's4w1.api.bengabet.webhop.biz', types: { 'IssueServiceCommand': TypeInfo(TypeOf.Class, create:() => IssueServiceCommand()), });