/* Options: Date: 2026-04-03 16:03:17 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cpmwebservices-t.clarkpud.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: TwilioCallback.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using CPU.Notifications.ServiceModel; namespace CPU.Notifications.ServiceModel { [Route("/callback", "POST")] public partial class TwilioCallback : IReturn { public virtual string? AccountSid { get; set; } public virtual string? Body { get; set; } public virtual string? From { get; set; } public virtual string? MessageSid { get; set; } public virtual string? To { get; set; } } }