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