/* Options: Date: 2025-10-27 22:13:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ActionsDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class ActionsDeleteResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=8) ResponseStatus? ResponseStatus; ActionsDeleteResponse({this.Id,this.ResponseStatus}); ActionsDeleteResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ActionsDeleteResponse"; TypeContext? context = _ctx; } // @Route("/actions/{Id}", "DELETE") // @DataContract class ActionsDelete implements IReturn, IConvertible, IDelete { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; ActionsDelete({this.Id}); ActionsDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => ActionsDeleteResponse(); getResponseTypeName() => "ActionsDeleteResponse"; getTypeName() => "ActionsDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'ActionsDeleteResponse': TypeInfo(TypeOf.Class, create:() => ActionsDeleteResponse()), 'ActionsDelete': TypeInfo(TypeOf.Class, create:() => ActionsDelete()), });