/* Options: Date: 2026-04-05 18:25:55 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: EnquiryChatUnreadMessagesForEntityContact.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class UnreadMessagesForEntityContactViewModel implements IConvertible { int? UnreadMessagesForEntityContact; String? ChattingWithEntityContactGuid; String? ChattingWithEntityContactImageGuid; UnreadMessagesForEntityContactViewModel({this.UnreadMessagesForEntityContact,this.ChattingWithEntityContactGuid,this.ChattingWithEntityContactImageGuid}); UnreadMessagesForEntityContactViewModel.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UnreadMessagesForEntityContact = json['UnreadMessagesForEntityContact']; ChattingWithEntityContactGuid = json['ChattingWithEntityContactGuid']; ChattingWithEntityContactImageGuid = json['ChattingWithEntityContactImageGuid']; return this; } Map toJson() => { 'UnreadMessagesForEntityContact': UnreadMessagesForEntityContact, 'ChattingWithEntityContactGuid': ChattingWithEntityContactGuid, 'ChattingWithEntityContactImageGuid': ChattingWithEntityContactImageGuid }; getTypeName() => "UnreadMessagesForEntityContactViewModel"; TypeContext? context = _ctx; } // @Route("/Chats/Unread-Messages-For-Entity-Contact", "GET") class EnquiryChatUnreadMessagesForEntityContact implements IReturn, IConvertible, IGet { String? ChatGuid; EnquiryChatUnreadMessagesForEntityContact({this.ChatGuid}); EnquiryChatUnreadMessagesForEntityContact.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ChatGuid = json['ChatGuid']; return this; } Map toJson() => { 'ChatGuid': ChatGuid }; createResponse() => UnreadMessagesForEntityContactViewModel(); getResponseTypeName() => "UnreadMessagesForEntityContactViewModel"; getTypeName() => "EnquiryChatUnreadMessagesForEntityContact"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: { 'UnreadMessagesForEntityContactViewModel': TypeInfo(TypeOf.Class, create:() => UnreadMessagesForEntityContactViewModel()), 'EnquiryChatUnreadMessagesForEntityContact': TypeInfo(TypeOf.Class, create:() => EnquiryChatUnreadMessagesForEntityContact()), });