| Required role: | Admin |
| All Verbs | /email/post/{PostId} |
|---|
import 'package:servicestack/servicestack.dart';
class EmailTestResponse implements IConvertible
{
ResponseStatus responseStatus;
EmailTestResponse({this.responseStatus});
EmailTestResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
};
getTypeName() => "EmailTestResponse";
TypeContext? context = _ctx;
}
// @ValidateRequest(Validator="IsAdmin")
class EmailTest implements IConvertible
{
int? postId;
EmailTest({this.postId});
EmailTest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
postId = json['postId'];
return this;
}
Map<String, dynamic> toJson() => {
'postId': postId
};
getTypeName() => "EmailTest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
'EmailTestResponse': TypeInfo(TypeOf.Class, create:() => EmailTestResponse()),
'EmailTest': TypeInfo(TypeOf.Class, create:() => EmailTest()),
});
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 /email/post/{PostId} HTTP/1.1
Host: techstacks.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
postId: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}