/* Options: Date: 2025-05-04 22:15:47 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EndTwilioCall.* //ExcludeTypes: //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.*; public class dtos { /** * Ends the specified Twilio call */ @Route(Path="/twilio/calls/{callSid}", Verbs="DELETE") @Api(Description="Ends the specified Twilio call") public static class EndTwilioCall implements IReturnVoid, IDelete { /** * The account ID that owns the call */ @ApiMember(Description="The account ID that owns the call") public String accountId = null; /** * The call SID of the call */ @ApiMember(Description="The call SID of the call") public String callSid = null; public String getAccountId() { return accountId; } public EndTwilioCall setAccountId(String value) { this.accountId = value; return this; } public String getCallSid() { return callSid; } public EndTwilioCall setCallSid(String value) { this.callSid = value; return this; } } }