PUT | /todos/{Id} |
---|
import 'package:servicestack/servicestack.dart';
class Todo implements IConvertible
{
int? id;
String? text;
bool? isFinished;
Todo({this.id,this.text,this.isFinished});
Todo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
text = json['text'];
isFinished = json['isFinished'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'text': text,
'isFinished': isFinished
};
getTypeName() => "Todo";
TypeContext? context = _ctx;
}
class UpdateTodo implements IPut, IConvertible
{
int? id;
// @Validate(Validator="NotEmpty")
String? text;
bool? isFinished;
UpdateTodo({this.id,this.text,this.isFinished});
UpdateTodo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
text = json['text'];
isFinished = json['isFinished'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'text': text,
'isFinished': isFinished
};
getTypeName() => "UpdateTodo";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'vue_vite_api.jamstacks.net', types: <String, TypeInfo> {
'Todo': TypeInfo(TypeOf.Class, create:() => Todo()),
'UpdateTodo': TypeInfo(TypeOf.Class, create:() => UpdateTodo()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /todos/{Id} HTTP/1.1
Host: vue-vite-api.jamstacks.net
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"id":0,"text":"String","isFinished":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"id":0,"text":"String","isFinished":false}