/* Options: Date: 2025-05-04 20:28:03 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: EndSession.* //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 session */ @Route(Path="/sessions/{sessionId}", Verbs="DELETE") @Api(Description="Ends the specified session") public static class EndSession implements IReturnVoid, IDelete { /** * The specified session ID */ @ApiMember(Description="The specified session ID") public String sessionId = null; /** * The local call ID */ @ApiMember(Description="The local call ID") public String callSid = null; public String getSessionId() { return sessionId; } public EndSession setSessionId(String value) { this.sessionId = value; return this; } public String getCallSid() { return callSid; } public EndSession setCallSid(String value) { this.callSid = value; return this; } } }