/* Options: Date: 2025-10-27 22:29:15 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: ActionInboxesEdit.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class ActionInboxesEditResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=2) int? TenantsId; // @DataMember(Order=3) int? ActionsId; // @DataMember(Order=4) String? Name; // @DataMember(Order=6) ResponseStatus? ResponseStatus; ActionInboxesEditResponse({this.Id,this.TenantsId,this.ActionsId,this.Name,this.ResponseStatus}); ActionInboxesEditResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; TenantsId = json['TenantsId']; ActionsId = json['ActionsId']; Name = json['Name']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'TenantsId': TenantsId, 'ActionsId': ActionsId, 'Name': Name, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ActionInboxesEditResponse"; TypeContext? context = _ctx; } // @Route("/action_inboxes/{Id}", "PUT") // @DataContract class ActionInboxesEdit implements IReturn, IConvertible, IPut { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; // @DataMember(Order=2) // @Validate(Validator="NotNull") int? TenantsId; // @DataMember(Order=3) // @Validate(Validator="NotNull") int? ActionsId; // @DataMember(Order=4) // @Validate(Validator="NotNull") String? Name; ActionInboxesEdit({this.Id,this.TenantsId,this.ActionsId,this.Name}); ActionInboxesEdit.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; TenantsId = json['TenantsId']; ActionsId = json['ActionsId']; Name = json['Name']; return this; } Map toJson() => { 'Id': Id, 'TenantsId': TenantsId, 'ActionsId': ActionsId, 'Name': Name }; createResponse() => ActionInboxesEditResponse(); getResponseTypeName() => "ActionInboxesEditResponse"; getTypeName() => "ActionInboxesEdit"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'ActionInboxesEditResponse': TypeInfo(TypeOf.Class, create:() => ActionInboxesEditResponse()), 'ActionInboxesEdit': TypeInfo(TypeOf.Class, create:() => ActionInboxesEdit()), });