| POST | /Authentication/Change |
|---|
import 'package:servicestack/servicestack.dart';
class Change implements IConvertible
{
String? Email;
String? Old;
String? New;
bool? IsPlainText;
Change({this.Email,this.Old,this.New,this.IsPlainText});
Change.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Email = json['Email'];
Old = json['Old'];
New = json['New'];
IsPlainText = json['IsPlainText'];
return this;
}
Map<String, dynamic> toJson() => {
'Email': Email,
'Old': Old,
'New': New,
'IsPlainText': IsPlainText
};
getTypeName() => "Change";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
'Change': TypeInfo(TypeOf.Class, create:() => Change()),
});
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.
POST /Authentication/Change HTTP/1.1
Host: dev.fieldsquared.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Email":"String","Old":"String","New":"String","IsPlainText":false}