/* Options: Date: 2025-10-27 21:54:19 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: CustomActionsDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class CustomActionsDeleteResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=7) ResponseStatus? ResponseStatus; CustomActionsDeleteResponse({this.Id,this.ResponseStatus}); CustomActionsDeleteResponse.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() => "CustomActionsDeleteResponse"; TypeContext? context = _ctx; } // @Route("/custom_actions/{Id}", "DELETE") // @DataContract class CustomActionsDelete implements IReturn, IConvertible, IDelete { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; CustomActionsDelete({this.Id}); CustomActionsDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => CustomActionsDeleteResponse(); getResponseTypeName() => "CustomActionsDeleteResponse"; getTypeName() => "CustomActionsDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'CustomActionsDeleteResponse': TypeInfo(TypeOf.Class, create:() => CustomActionsDeleteResponse()), 'CustomActionsDelete': TypeInfo(TypeOf.Class, create:() => CustomActionsDelete()), });