import 'package:servicestack/servicestack.dart';
class SetWorkflowTaskCancelAccepted implements IConvertible
{
int? ID;
SetWorkflowTaskCancelAccepted({this.ID});
SetWorkflowTaskCancelAccepted.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ID = json['ID'];
return this;
}
Map<String, dynamic> toJson() => {
'ID': ID
};
getTypeName() => "SetWorkflowTaskCancelAccepted";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: <String, TypeInfo> {
'SetWorkflowTaskCancelAccepted': TypeInfo(TypeOf.Class, create:() => SetWorkflowTaskCancelAccepted()),
});
Dart SetWorkflowTaskCancelAccepted DTOs
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 /jsv/oneway/SetWorkflowTaskCancelAccepted HTTP/1.1
Host: digiofficeapigateway.deltares.nl
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ID: 0
}