""" Options: Date: 2026-04-05 18:17:49 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: EnquiryChatDetails.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ChatDetailsViewModel: vessel_id: int = 0 entity_contact_id: int = 0 entity_contact_guid: Optional[str] = None entity_contact_image_guid: Optional[str] = None entity_contact_first_name: Optional[str] = None entity_contact_last_name: Optional[str] = None chat_guid: Optional[str] = None chatting_with_entity_contact_first_name: Optional[str] = None chatting_with_entity_contact_last_name: Optional[str] = None chatting_with_entity_contact_job_title: Optional[str] = None chatting_with_entity_name: Optional[str] = None single_chat: bool = False chatting_with_entity_contact_id: int = 0 chatting_with_entity_contact_guid: Optional[str] = None chatting_with_entity_contact_role: Optional[str] = None chatting_with_entity_id: int = 0 chatting_with_entity_contact_email_address: Optional[str] = None nominate_seller_already_used: bool = False active_chat_author_ids: Optional[str] = None banner_text: Optional[str] = None chatting_with_entity_contact_image_guid: Optional[str] = None # @Route("/Chats/Details", "GET") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class EnquiryChatDetails(IReturn[ChatDetailsViewModel]): id: Optional[str] = None single_chat: bool = False