/* Options: Date: 2026-04-05 18:22:40 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EntityContactsLogin.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class EntityLoginViewModel implements IConvertible { int? EntityContactId; String? EntityContactGuid; String? EmailAddress; String? Token; bool? DarkMode; bool? Success; bool? EmailAddressVerifiedError; EntityLoginViewModel({this.EntityContactId,this.EntityContactGuid,this.EmailAddress,this.Token,this.DarkMode,this.Success,this.EmailAddressVerifiedError}); EntityLoginViewModel.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityContactId = json['EntityContactId']; EntityContactGuid = json['EntityContactGuid']; EmailAddress = json['EmailAddress']; Token = json['Token']; DarkMode = json['DarkMode']; Success = json['Success']; EmailAddressVerifiedError = json['EmailAddressVerifiedError']; return this; } Map toJson() => { 'EntityContactId': EntityContactId, 'EntityContactGuid': EntityContactGuid, 'EmailAddress': EmailAddress, 'Token': Token, 'DarkMode': DarkMode, 'Success': Success, 'EmailAddressVerifiedError': EmailAddressVerifiedError }; getTypeName() => "EntityLoginViewModel"; TypeContext? context = _ctx; } // @Route("/Entity-Contacts/Login", "POST") class EntityContactsLogin implements IReturn, IConvertible, IPost { EntityContactsLogin(); EntityContactsLogin.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => EntityLoginViewModel(); getResponseTypeName() => "EntityLoginViewModel"; getTypeName() => "EntityContactsLogin"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: { 'EntityLoginViewModel': TypeInfo(TypeOf.Class, create:() => EntityLoginViewModel()), 'EntityContactsLogin': TypeInfo(TypeOf.Class, create:() => EntityContactsLogin()), });