/* Options: Date: 2025-05-04 22:17:50 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: AddToSessionLog.* //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.* /** * Adds the specified log entry to the session log. */ @Route(Path="/sessions/{sessionId}/log", Verbs="POST") @Api(Description="Adds the specified log entry to the session log.") open class AddToSessionLog : IReturnVoid { /** * The ID of the active session */ @ApiMember(Description="The ID of the active session") open var sessionId:String? = null /** * The log text to add */ @ApiMember(Description="The log text to add") open var logText:String? = null }