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