/* Options: Date: 2025-04-05 05:39:20 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsTypeSuperAdminUserQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class CommentsTypeResponse implements IConvertible { int? Id; String? Name; String? Description; CommentsTypeResponse({this.Id,this.Name,this.Description}); CommentsTypeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; Description = json['Description']; return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'Description': Description }; getTypeName() => "CommentsTypeResponse"; TypeContext? context = _ctx; } // @Route("/superadmin/commentstype", "GET") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) class CommentsTypeSuperAdminUserQuery implements IReturn, IConvertible, IGet { CommentsTypeSuperAdminUserQuery(); CommentsTypeSuperAdminUserQuery.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => CommentsTypeResponse(); getResponseTypeName() => "CommentsTypeResponse"; getTypeName() => "CommentsTypeSuperAdminUserQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'CommentsTypeResponse': TypeInfo(TypeOf.Class, create:() => CommentsTypeResponse()), 'CommentsTypeSuperAdminUserQuery': TypeInfo(TypeOf.Class, create:() => CommentsTypeSuperAdminUserQuery()), });