/* Options: Date: 2025-05-04 22:16:14 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EndTwilioCall.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IDelete { } /** @description Ends the specified Twilio call */ // @Route("/twilio/calls/{callSid}", "DELETE") // @Api(Description="Ends the specified Twilio call") export class EndTwilioCall implements IReturnVoid, IDelete { /** @description The account ID that owns the call */ // @ApiMember(Description="The account ID that owns the call") public accountId: string; /** @description The call SID of the call */ // @ApiMember(Description="The call SID of the call") public callSid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EndTwilioCall'; } public getMethod() { return 'DELETE'; } public createResponse() {} }