/* Options: Date: 2025-05-05 00:02:47 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //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: False //ExportValueTypes: False IncludeTypes: EndTwilioCall.* //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 Voice.Api.Twilio; namespace Voice.Api.Twilio { /// ///Ends the specified Twilio call /// [Route("/twilio/calls/{callSid}", "DELETE")] [Api(Description="Ends the specified Twilio call")] public partial class EndTwilioCall : IReturnVoid, IDelete { /// ///The account ID that owns the call /// [ApiMember(Description="The account ID that owns the call")] public virtual string AccountId { get; set; } /// ///The call SID of the call /// [ApiMember(Description="The call SID of the call")] public virtual string CallSid { get; set; } } }