/* Options: Date: 2025-05-04 21:56:58 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: AddToSessionLog.* //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 { /** * 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.") public static class AddToSessionLog implements IReturnVoid { /** * The ID of the active session */ @ApiMember(Description="The ID of the active session") public String sessionId = null; /** * The log text to add */ @ApiMember(Description="The log text to add") public String logText = null; public String getSessionId() { return sessionId; } public AddToSessionLog setSessionId(String value) { this.sessionId = value; return this; } public String getLogText() { return logText; } public AddToSessionLog setLogText(String value) { this.logText = value; return this; } } }