PUT | /posts/{Id}/status/{Status} |
---|
import 'package:servicestack/servicestack.dart';
class ChangeStatusPost implements IPut, IConvertible
{
int? id;
String? status;
String? reason;
ChangeStatusPost({this.id,this.status,this.reason});
ChangeStatusPost.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
status = json['status'];
reason = json['reason'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'status': status,
'reason': reason
};
getTypeName() => "ChangeStatusPost";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
'ChangeStatusPost': TypeInfo(TypeOf.Class, create:() => ChangeStatusPost()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /posts/{Id}/status/{Status} HTTP/1.1
Host: techstacks.io
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"status":"String","reason":"String"}