/* Options: Date: 2025-05-05 00:36:26 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EndTwilioCall.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Ends the specified Twilio call */ // @Route("/twilio/calls/{callSid}", "DELETE") // @Api(Description="Ends the specified Twilio call") class EndTwilioCall implements IReturnVoid, IDelete, IConvertible { /** * The account ID that owns the call */ // @ApiMember(Description="The account ID that owns the call") String? accountId; /** * The call SID of the call */ // @ApiMember(Description="The call SID of the call") String? callSid; EndTwilioCall({this.accountId,this.callSid}); EndTwilioCall.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; callSid = json['callSid']; return this; } Map toJson() => { 'accountId': accountId, 'callSid': callSid }; createResponse() {} getTypeName() => "EndTwilioCall"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'EndTwilioCall': TypeInfo(TypeOf.Class, create:() => EndTwilioCall()), });