DELETE | /todos |
---|
import 'package:servicestack/servicestack.dart';
class DeleteTodos implements IDelete, IConvertible
{
List<int>? ids;
DeleteTodos({this.ids});
DeleteTodos.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ids = JsonConverters.fromJson(json['ids'],'List<int>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ids': JsonConverters.toJson(ids,'List<int>',context!)
};
getTypeName() => "DeleteTodos";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'vue_vite_api.jamstacks.net', types: <String, TypeInfo> {
'DeleteTodos': TypeInfo(TypeOf.Class, create:() => DeleteTodos()),
});
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.
DELETE /todos HTTP/1.1 Host: vue-vite-api.jamstacks.net Accept: text/jsv