/* Options: Date: 2026-04-05 18:19:35 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EnquiryChatUnreadMessagesForEntityContact.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Chats/Unread-Messages-For-Entity-Contact", Verbs="GET") public static class EnquiryChatUnreadMessagesForEntityContact implements IReturn { public UUID ChatGuid = null; public UUID getChatGuid() { return ChatGuid; } public EnquiryChatUnreadMessagesForEntityContact setChatGuid(UUID value) { this.ChatGuid = value; return this; } private static Object responseType = UnreadMessagesForEntityContactViewModel.class; public Object getResponseType() { return responseType; } } public static class UnreadMessagesForEntityContactViewModel { public Integer UnreadMessagesForEntityContact = null; public UUID ChattingWithEntityContactGuid = null; public UUID ChattingWithEntityContactImageGuid = null; public Integer getUnreadMessagesForEntityContact() { return UnreadMessagesForEntityContact; } public UnreadMessagesForEntityContactViewModel setUnreadMessagesForEntityContact(Integer value) { this.UnreadMessagesForEntityContact = value; return this; } public UUID getChattingWithEntityContactGuid() { return ChattingWithEntityContactGuid; } public UnreadMessagesForEntityContactViewModel setChattingWithEntityContactGuid(UUID value) { this.ChattingWithEntityContactGuid = value; return this; } public UUID getChattingWithEntityContactImageGuid() { return ChattingWithEntityContactImageGuid; } public UnreadMessagesForEntityContactViewModel setChattingWithEntityContactImageGuid(UUID value) { this.ChattingWithEntityContactImageGuid = value; return this; } } }