GetLogEntriesRequest

@Serializable
data class GetLogEntriesRequest(val startIndex: Int? = null, val limit: Int? = null, val minDate: DateTime? = null, val maxDate: DateTime? = null, val hasUserId: Boolean? = null, val name: String? = null, val overview: String? = null, val shortOverview: String? = null, val type: String? = null, val itemId: UUID? = null, val username: String? = null, val severity: LogLevel? = null, val sortBy: Collection<ActivityLogSortBy>? = null, val sortOrder: Collection<SortOrder>? = null)

Activity log entries.

Constructors

Link copied to clipboard
constructor(startIndex: Int? = null, limit: Int? = null, minDate: DateTime? = null, maxDate: DateTime? = null, hasUserId: Boolean? = null, name: String? = null, overview: String? = null, shortOverview: String? = null, type: String? = null, itemId: UUID? = null, username: String? = null, severity: LogLevel? = null, sortBy: Collection<ActivityLogSortBy>? = null, sortOrder: Collection<SortOrder>? = null)

Properties

Link copied to clipboard
@SerialName(value = "hasUserId")
val hasUserId: Boolean?

Filter log entries if it has user id, or not.

Link copied to clipboard
@SerialName(value = "itemId")
val itemId: UUID?

Filter by item id.

Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?

The maximum number of records to return.

Link copied to clipboard
@SerialName(value = "maxDate")
val maxDate: DateTime?

The maximum date.

Link copied to clipboard
@SerialName(value = "minDate")
val minDate: DateTime?

The minimum date.

Link copied to clipboard
@SerialName(value = "name")
val name: String?

Filter by name.

Link copied to clipboard
@SerialName(value = "overview")
val overview: String?

Filter by overview.

Link copied to clipboard
@SerialName(value = "severity")
val severity: LogLevel?

Filter by log severity.

Link copied to clipboard
@SerialName(value = "shortOverview")
val shortOverview: String?

Filter by short overview.

Link copied to clipboard
@SerialName(value = "sortBy")
val sortBy: Collection<ActivityLogSortBy>?

Specify one or more sort orders. Format: SortBy=Name,Type.

Link copied to clipboard
@SerialName(value = "sortOrder")
val sortOrder: Collection<SortOrder>?

Sort Order..

Link copied to clipboard
@SerialName(value = "startIndex")
val startIndex: Int?

The record index to start at. All items with a lower index will be dropped from the results.

Link copied to clipboard
@SerialName(value = "type")
val type: String?

Filter by type.

Link copied to clipboard
@SerialName(value = "username")
val username: String?

Filter by username.