| GET,POST | /{Workspace}/Undelete |
|---|
import 'package:servicestack/servicestack.dart';
class DeletedItem implements IConvertible
{
String? ObjectId;
String? Class;
String? Name;
String? Type;
String? DeletedBy;
String? DeletedDate;
String? Created;
String? LastUpdated;
DeletedItem({this.ObjectId,this.Class,this.Name,this.Type,this.DeletedBy,this.DeletedDate,this.Created,this.LastUpdated});
DeletedItem.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ObjectId = json['ObjectId'];
Class = json['Class'];
Name = json['Name'];
Type = json['Type'];
DeletedBy = json['DeletedBy'];
DeletedDate = json['DeletedDate'];
Created = json['Created'];
LastUpdated = json['LastUpdated'];
return this;
}
Map<String, dynamic> toJson() => {
'ObjectId': ObjectId,
'Class': Class,
'Name': Name,
'Type': Type,
'DeletedBy': DeletedBy,
'DeletedDate': DeletedDate,
'Created': Created,
'LastUpdated': LastUpdated
};
getTypeName() => "DeletedItem";
TypeContext? context = _ctx;
}
/**
* Handles undelete of data.
*/
class Undelete implements IConvertible
{
String? Workspace;
List<DeletedItem>? DeletedItems;
List<DeletedItem>? DeletedItemsToRestore;
Undelete({this.Workspace,this.DeletedItems,this.DeletedItemsToRestore});
Undelete.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Workspace = json['Workspace'];
DeletedItems = JsonConverters.fromJson(json['DeletedItems'],'List<DeletedItem>',context!);
DeletedItemsToRestore = JsonConverters.fromJson(json['DeletedItemsToRestore'],'List<DeletedItem>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Workspace': Workspace,
'DeletedItems': JsonConverters.toJson(DeletedItems,'List<DeletedItem>',context!),
'DeletedItemsToRestore': JsonConverters.toJson(DeletedItemsToRestore,'List<DeletedItem>',context!)
};
getTypeName() => "Undelete";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
'DeletedItem': TypeInfo(TypeOf.Class, create:() => DeletedItem()),
'Undelete': TypeInfo(TypeOf.Class, create:() => Undelete()),
'List<DeletedItem>': TypeInfo(TypeOf.Class, create:() => <DeletedItem>[]),
});
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 /{Workspace}/Undelete HTTP/1.1
Host: dev.fieldsquared.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Workspace: String,
DeletedItems:
[
{
ObjectId: String,
Class: String,
Name: String,
Type: String,
DeletedBy: String,
DeletedDate: String,
Created: String,
LastUpdated: String
}
],
DeletedItemsToRestore:
[
{
ObjectId: String,
Class: String,
Name: String,
Type: String,
DeletedBy: String,
DeletedDate: String,
Created: String,
LastUpdated: String
}
]
}