/* Options: Date: 2025-07-17 21:20:49 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SecureAtLeast.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class SecureResponse implements IConvertible { String? result; SecureResponse({this.result}); SecureResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { result = json['result']; return this; } Map toJson() => { 'result': result }; getTypeName() => "SecureResponse"; TypeContext? context = _ctx; } // @Route("/secure/atleast/{AtLeast}") class SecureAtLeast implements IReturn, IConvertible { bool? atLeast; SecureAtLeast({this.atLeast}); SecureAtLeast.fromJson(Map json) { fromMap(json); } fromMap(Map json) { atLeast = json['atLeast']; return this; } Map toJson() => { 'atLeast': atLeast }; createResponse() => SecureResponse(); getResponseTypeName() => "SecureResponse"; getTypeName() => "SecureAtLeast"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'SecureResponse': TypeInfo(TypeOf.Class, create:() => SecureResponse()), 'SecureAtLeast': TypeInfo(TypeOf.Class, create:() => SecureAtLeast()), });