/* Options: Date: 2025-11-05 03:34:19 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteAISession.* //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 { /** * Delete the specified session */ @Route(Path="/ai/sessions/{sessionId}", Verbs="DELETE") @Api(Description="Delete the specified session") public static class DeleteAISession implements IReturnVoid, IDelete { /** * The ID of the session to delete */ @ApiMember(Description="The ID of the session to delete") public String sessionId = null; public String getSessionId() { return sessionId; } public DeleteAISession setSessionId(String value) { this.sessionId = value; return this; } } }