BaseResource

@Serializable
data class BaseResource(val id: Long, val modified: Instant, val name: String)

A data model representing a base resource.

Constructors

Link copied to clipboard
constructor(id: Long, modified: Instant, name: String)

Properties

Link copied to clipboard
val id: Long

The unique identifier of the base resource.

Link copied to clipboard
val modified: Instant

The date and time when the base resource was last modified.

Link copied to clipboard

The name of the base resource.