import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
import 'dart:collection';
class HelloMap implements IConvertible
{
List<String>? names = [];
HelloMap({this.names});
HelloMap.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
names = JsonConverters.fromJson(json['names'],'List<String>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'names': JsonConverters.toJson(names,'List<String>',context!)
};
getTypeName() => "HelloMap";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: <String, TypeInfo> {
'HelloMap': TypeInfo(TypeOf.Class, create:() => HelloMap()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/HelloMap HTTP/1.1
Host: test.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"names":["String"]}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"String":{"result":"String"}}