commonMain.org.jellyfin.sdk.model.api.ActivityLogEntry.kt Maven / Gradle / Ivy
// !! WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
@file:UseSerializers(
DateTimeSerializer::class,
UUIDSerializer::class,
)
package org.jellyfin.sdk.model.api
import kotlin.Deprecated
import kotlin.Long
import kotlin.String
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.UseSerializers
import org.jellyfin.sdk.model.DateTime
import org.jellyfin.sdk.model.UUID
import org.jellyfin.sdk.model.serializer.DateTimeSerializer
import org.jellyfin.sdk.model.serializer.UUIDSerializer
/**
* An activity log entry.
*/
@Serializable
public data class ActivityLogEntry(
/**
* The identifier.
*/
@SerialName("Id")
public val id: Long,
/**
* The name.
*/
@SerialName("Name")
public val name: String,
/**
* The overview.
*/
@SerialName("Overview")
public val overview: String? = null,
/**
* The short overview.
*/
@SerialName("ShortOverview")
public val shortOverview: String? = null,
/**
* The type.
*/
@SerialName("Type")
public val type: String,
/**
* The item identifier.
*/
@SerialName("ItemId")
public val itemId: String? = null,
/**
* The date.
*/
@SerialName("Date")
public val date: DateTime,
/**
* The user identifier.
*/
@SerialName("UserId")
public val userId: UUID,
/**
* The user primary image tag.
*/
@Deprecated("This member is deprecated and may be removed in the future")
@SerialName("UserPrimaryImageTag")
public val userPrimaryImageTag: String? = null,
/**
* The log severity.
*/
@SerialName("Severity")
public val severity: LogLevel,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy