/* Options: Date: 2025-12-06 09:20:54 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PublicTenantLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/publictenant", "GET") class PublicTenantLookup implements IReturn>, IConvertible, IGet { String? token; PublicTenantLookup({this.token}); PublicTenantLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { token = json['token']; return this; } Map toJson() => { 'token': token }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "PublicTenantLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'PublicTenantLookup': TypeInfo(TypeOf.Class, create:() => PublicTenantLookup()), });