/* Options: Date: 2025-05-04 23:02:19 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EndTwilioCall.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Ends the specified Twilio call */ @Route(Path="/twilio/calls/{callSid}", Verbs="DELETE") @Api(Description="Ends the specified Twilio call") open class EndTwilioCall : IReturnVoid, IDelete { /** * The account ID that owns the call */ @ApiMember(Description="The account ID that owns the call") open var accountId:String? = null /** * The call SID of the call */ @ApiMember(Description="The call SID of the call") open var callSid:String? = null }