/* Options: Date: 2026-04-05 18:23:12 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: EnquiryChatNotifyReadMessages.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Chats/Notify-Read-Messages", "GET") class EnquiryChatNotifyReadMessages implements IConvertible, IGet { String? Id; EnquiryChatNotifyReadMessages({this.Id}); EnquiryChatNotifyReadMessages.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; getTypeName() => "EnquiryChatNotifyReadMessages"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: { 'EnquiryChatNotifyReadMessages': TypeInfo(TypeOf.Class, create:() => EnquiryChatNotifyReadMessages()), });