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