GET POST | /api/documentviews/{Key} |
---|
import 'package:servicestack/servicestack.dart';
class Explorer implements IConvertible
{
String? ID;
String? Title;
int? Order;
Explorer({this.ID,this.Title,this.Order});
Explorer.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ID = json['ID'];
Title = json['Title'];
Order = json['Order'];
return this;
}
Map<String, dynamic> toJson() => {
'ID': ID,
'Title': Title,
'Order': Order
};
getTypeName() => "Explorer";
TypeContext? context = _ctx;
}
// @DataContract
abstract class MobileView
{
// @DataMember
String? ID;
// @DataMember
String? Title;
// @DataMember
String? ImageUrl;
// @DataMember
int? ChildrenCount;
// @DataMember
int? Order;
// @DataMember
List<Explorer>? Explorers;
MobileView({this.ID,this.Title,this.ImageUrl,this.ChildrenCount,this.Order,this.Explorers});
MobileView.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ID = json['ID'];
Title = json['Title'];
ImageUrl = json['ImageUrl'];
ChildrenCount = json['ChildrenCount'];
Order = json['Order'];
Explorers = JsonConverters.fromJson(json['Explorers'],'List<Explorer>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ID': ID,
'Title': Title,
'ImageUrl': ImageUrl,
'ChildrenCount': ChildrenCount,
'Order': Order,
'Explorers': JsonConverters.toJson(Explorers,'List<Explorer>',context!)
};
getTypeName() => "MobileView";
TypeContext? context = _ctx;
}
class DocumentView extends MobileView implements IConvertible
{
// @DataMember
String? TranslateKey;
// @DataMember
String? SiteMapKey;
DocumentView({this.TranslateKey,this.SiteMapKey});
DocumentView.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
TranslateKey = json['TranslateKey'];
SiteMapKey = json['SiteMapKey'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'TranslateKey': TranslateKey,
'SiteMapKey': SiteMapKey
});
getTypeName() => "DocumentView";
TypeContext? context = _ctx;
}
class GetDocumentViewDetails implements IConvertible
{
String? Key;
bool? IncludeExplorers;
GetDocumentViewDetails({this.Key,this.IncludeExplorers});
GetDocumentViewDetails.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Key = json['Key'];
IncludeExplorers = json['IncludeExplorers'];
return this;
}
Map<String, dynamic> toJson() => {
'Key': Key,
'IncludeExplorers': IncludeExplorers
};
getTypeName() => "GetDocumentViewDetails";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: <String, TypeInfo> {
'Explorer': TypeInfo(TypeOf.Class, create:() => Explorer()),
'MobileView': TypeInfo(TypeOf.AbstractClass),
'List<Explorer>': TypeInfo(TypeOf.Class, create:() => <Explorer>[]),
'DocumentView': TypeInfo(TypeOf.Class, create:() => DocumentView()),
'GetDocumentViewDetails': TypeInfo(TypeOf.Class, create:() => GetDocumentViewDetails()),
});
Dart GetDocumentViewDetails DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/documentviews/{Key} HTTP/1.1
Host: digiofficeapigateway.deltares.nl
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Key":"String","IncludeExplorers":false}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"TranslateKey":"String","SiteMapKey":"String","ID":"00000000-0000-0000-0000-000000000000","Title":"String","ImageUrl":"String","ChildrenCount":0,"Order":0,"Explorers":[{"ID":"00000000-0000-0000-0000-000000000000","Title":"String","Order":0}]}