/* Options: Date: 2025-05-05 00:49:34 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppGetLogo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class AppGetLogoResponse implements IConvertible { String? logoUri; AppGetLogoResponse({this.logoUri}); AppGetLogoResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { logoUri = json['logoUri']; return this; } Map toJson() => { 'logoUri': logoUri }; getTypeName() => "AppGetLogoResponse"; TypeContext? context = _ctx; } // @Route("/portal/logo", "GET") class AppGetLogo implements IReturn, IConvertible, IGet { String? accountId; AppGetLogo({this.accountId}); AppGetLogo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; return this; } Map toJson() => { 'accountId': accountId }; createResponse() => AppGetLogoResponse(); getResponseTypeName() => "AppGetLogoResponse"; getTypeName() => "AppGetLogo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'AppGetLogoResponse': TypeInfo(TypeOf.Class, create:() => AppGetLogoResponse()), 'AppGetLogo': TypeInfo(TypeOf.Class, create:() => AppGetLogo()), });