import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
import 'dart:collection';
class Poco implements IConvertible
{
String? name;
Poco({this.name});
Poco.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
name = json['name'];
return this;
}
Map<String, dynamic> toJson() => {
'name': name
};
getTypeName() => "Poco";
TypeContext? context = _ctx;
}
class TestUploadWithDto implements IPost, IConvertible
{
int? Int;
int? nullableId;
int? long;
double? Double;
String? string;
DateTime? dateTime;
List<int>? intArray;
List<int>? intList;
List<String>? stringArray;
List<String>? stringList;
List<Poco>? pocoArray;
List<Poco>? pocoList;
List<int?>? nullableByteArray;
List<int>? nullableByteList;
List<DateTime?>? nullableDateTimeArray;
List<DateTime>? nullableDateTimeList;
Map<String,List<Poco>?>? pocoLookup;
Map<String,List<Map<String,Poco>>?>? pocoLookupMap;
Map<String,List<String>?>? mapList;
TestUploadWithDto({this.Int,this.nullableId,this.long,this.Double,this.string,this.dateTime,this.intArray,this.intList,this.stringArray,this.stringList,this.pocoArray,this.pocoList,this.nullableByteArray,this.nullableByteList,this.nullableDateTimeArray,this.nullableDateTimeList,this.pocoLookup,this.pocoLookupMap,this.mapList});
TestUploadWithDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Int = json['int'];
nullableId = json['nullableId'];
long = json['long'];
Double = JsonConverters.toDouble(json['double']);
string = json['string'];
dateTime = JsonConverters.fromJson(json['dateTime'],'DateTime',context!);
intArray = JsonConverters.fromJson(json['intArray'],'List<int>',context!);
intList = JsonConverters.fromJson(json['intList'],'List<int>',context!);
stringArray = JsonConverters.fromJson(json['stringArray'],'List<String>',context!);
stringList = JsonConverters.fromJson(json['stringList'],'List<String>',context!);
pocoArray = JsonConverters.fromJson(json['pocoArray'],'List<Poco>',context!);
pocoList = JsonConverters.fromJson(json['pocoList'],'List<Poco>',context!);
nullableByteArray = JsonConverters.fromJson(json['nullableByteArray'],'List<int?>',context!);
nullableByteList = JsonConverters.fromJson(json['nullableByteList'],'List<int>',context!);
nullableDateTimeArray = JsonConverters.fromJson(json['nullableDateTimeArray'],'List<DateTime?>',context!);
nullableDateTimeList = JsonConverters.fromJson(json['nullableDateTimeList'],'List<DateTime>',context!);
pocoLookup = JsonConverters.fromJson(json['pocoLookup'],'Map<String,List<Poco>?>',context!);
pocoLookupMap = JsonConverters.fromJson(json['pocoLookupMap'],'Map<String,List<Map<String,Poco>>?>',context!);
mapList = JsonConverters.fromJson(json['mapList'],'Map<String,List<String>?>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'int': Int,
'nullableId': nullableId,
'long': long,
'double': Double,
'string': string,
'dateTime': JsonConverters.toJson(dateTime,'DateTime',context!),
'intArray': JsonConverters.toJson(intArray,'List<int>',context!),
'intList': JsonConverters.toJson(intList,'List<int>',context!),
'stringArray': JsonConverters.toJson(stringArray,'List<String>',context!),
'stringList': JsonConverters.toJson(stringList,'List<String>',context!),
'pocoArray': JsonConverters.toJson(pocoArray,'List<Poco>',context!),
'pocoList': JsonConverters.toJson(pocoList,'List<Poco>',context!),
'nullableByteArray': JsonConverters.toJson(nullableByteArray,'List<int?>',context!),
'nullableByteList': JsonConverters.toJson(nullableByteList,'List<int>',context!),
'nullableDateTimeArray': JsonConverters.toJson(nullableDateTimeArray,'List<DateTime?>',context!),
'nullableDateTimeList': JsonConverters.toJson(nullableDateTimeList,'List<DateTime>',context!),
'pocoLookup': JsonConverters.toJson(pocoLookup,'Map<String,List<Poco>?>',context!),
'pocoLookupMap': JsonConverters.toJson(pocoLookupMap,'Map<String,List<Map<String,Poco>>?>',context!),
'mapList': JsonConverters.toJson(mapList,'Map<String,List<String>?>',context!)
};
getTypeName() => "TestUploadWithDto";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: <String, TypeInfo> {
'Poco': TypeInfo(TypeOf.Class, create:() => Poco()),
'TestUploadWithDto': TypeInfo(TypeOf.Class, create:() => TestUploadWithDto()),
'List<Poco>': TypeInfo(TypeOf.Class, create:() => <Poco>[]),
'List<int?>': TypeInfo(TypeOf.Class, create:() => <int?>[]),
'List<DateTime?>': TypeInfo(TypeOf.Class, create:() => <DateTime?>[]),
'List<DateTime>': TypeInfo(TypeOf.Class, create:() => <DateTime>[]),
'Map<String,List<Poco>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<Poco>?>()),
'Map<String,List<Map<String,Poco>>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<Map<String,Poco>>?>()),
'List<Map<String,Poco>>': TypeInfo(TypeOf.Class, create:() => <Map<String,Poco>>[]),
'Map<String,Poco>': TypeInfo(TypeOf.Class, create:() => Map<String,Poco>()),
'Map<String,List<String>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<String>?>()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/TestUploadWithDto HTTP/1.1
Host: test.servicestack.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
int: 0,
nullableId: 0,
long: 0,
double: 0,
string: String,
dateTime: 0001-01-01,
intArray:
[
0
],
intList:
[
0
],
stringArray:
[
String
],
stringList:
[
String
],
pocoArray:
[
{
name: String
}
],
pocoList:
[
{
name: String
}
],
nullableByteArray:
[
0
],
nullableByteList:
[
0
],
nullableDateTimeArray:
[
0001-01-01
],
nullableDateTimeList:
[
0001-01-01
],
pocoLookup:
{
String:
[
{
name: String
}
]
},
pocoLookupMap:
{
String:
[
{
String:
{
name: String
}
}
]
},
mapList:
{
String:
[
String
]
}
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { int: 0, nullableId: 0, long: 0, double: 0, string: String, dateTime: 0001-01-01, intArray: [ 0 ], intList: [ 0 ], stringArray: [ String ], stringList: [ String ], pocoArray: [ { name: String } ], pocoList: [ { name: String } ], nullableByteArray: [ 0 ], nullableByteList: [ 0 ], nullableDateTimeArray: [ 0001-01-01 ], nullableDateTimeList: [ 0001-01-01 ], pocoLookup: { String: [ { name: String } ] }, pocoLookupMap: { String: [ { String: { name: String } } ] }, mapList: { String: [ String ] } }