/* Options: Date: 2026-04-04 06:46:59 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddLog.* //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.* /** * Add a log entry to the logging database */ @Route(Path="/logs", Verbs="POST") @Api(Description="Add a log entry to the logging database") open class AddLog : IReturn { /** * Log Category - Information = 1, Warning = 2, AppError = 3 */ @ApiMember(Description="Log Category - Information = 1, Warning = 2, AppError = 3") open var Category:Int? = null open var LogEntry:String? = null open var Browser:String? = null open var PerspectiveSessionId:UUID? = null companion object { private val responseType = AddLogResponse::class.java } override fun getResponseType(): Any? = AddLog.responseType } @ApiResponse(Description="Returns the log reference id and response status") open class AddLogResponse { open var LogId:UUID? = null open var ResponseStatus:ResponseStatus? = null }