/* Options: Date: 2024-09-21 03:22:45 SwiftVersion: 5.0 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: EndTwilioCall.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Ends the specified Twilio call */ // @Route("/twilio/calls/{callSid}", "DELETE") // @Api(Description="Ends the specified Twilio call") public class EndTwilioCall : IReturnVoid, IDelete, Codable { /** * The account ID that owns the call */ // @ApiMember(Description="The account ID that owns the call") public var accountId:String? /** * The call SID of the call */ // @ApiMember(Description="The call SID of the call") public var callSid:String? required public init(){} }