/* Options: Date: 2025-05-04 22:21:31 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: AddToSessionLog.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Adds the specified log entry to the session log. */ // @Route("/sessions/{sessionId}/log", "POST") // @Api(Description="Adds the specified log entry to the session log.") public class AddToSessionLog : IReturnVoid, Codable { /** * The ID of the active session */ // @ApiMember(Description="The ID of the active session") public var sessionId:String? /** * The log text to add */ // @ApiMember(Description="The log text to add") public var logText:String? required public init(){} }