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