/* Options:
Date: 2025-07-18 09:08:17
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io

//Package: 
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion: 
//AddDescriptionAsComments: True
IncludeTypes: LeaveSession.*
//ExcludeTypes: 
//InitializeCollections: False
//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.*


/**
* DESCRIPTION
*/
@Route(Path="/session/{sessionId}/members", Verbs="DELETE")
@Api(Description="DESCRIPTION")
open class LeaveSession : IReturnVoid, IDelete
{
    /**
    * The ID of the session you want to leave
    */
    @ApiMember(Description="The ID of the session you want to leave")
    open var sessionId:String? = null
}