import 'package:servicestack/servicestack.dart';
class ProcessCalculateEventSetAtomData implements IConvertible
{
int? eventSetId;
bool? forceRecalc;
ProcessCalculateEventSetAtomData({this.eventSetId,this.forceRecalc});
ProcessCalculateEventSetAtomData.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
eventSetId = json['eventSetId'];
forceRecalc = json['forceRecalc'];
return this;
}
Map<String, dynamic> toJson() => {
'eventSetId': eventSetId,
'forceRecalc': forceRecalc
};
getTypeName() => "ProcessCalculateEventSetAtomData";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: <String, TypeInfo> {
'ProcessCalculateEventSetAtomData': TypeInfo(TypeOf.Class, create:() => ProcessCalculateEventSetAtomData()),
});
Dart ProcessCalculateEventSetAtomData DTOs
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.
POST /jsonl/oneway/ProcessCalculateEventSetAtomData HTTP/1.1
Host: riskstoreng-dev.nephila.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"eventSetId":0,"forceRecalc":false}