/* Options: Date: 2024-09-19 17:48:37 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://support.bettor-dual-stage.webhop.biz //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: SendChatMessage.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Support.WebApi.ServiceModel; namespace Support.WebApi.ServiceModel { [Route("/support/chat/send", "POST")] public partial class SendChatMessage : IReturn { public SendChatMessage() { Payload = new Dictionary{}; } public virtual string SenderId { get; set; } public virtual string DisplayName { get; set; } public virtual Dictionary Payload { get; set; } public virtual string Channel { get; set; } } }