Namespace

data class Namespace(    val name: NamespaceName? = null,     val createdAt: Long? = null,     val updatedAt: Long? = null,     val ownerName: OwnerName? = null,     val description: String? = null)

Represents a namespace.

Constructors

Link copied to clipboard
constructor(    name: NamespaceName? = null,     createdAt: Long? = null,     updatedAt: Long? = null,     ownerName: OwnerName? = null,     description: String? = null)

Properties

Link copied to clipboard
val createdAt: Long? = null

The timestamp when the namespace was created (optional).

Link copied to clipboard
val description: String? = null

The description of the namespace (optional).

Link copied to clipboard
val name: NamespaceName? = null

The name of the namespace (optional).

Link copied to clipboard
val ownerName: OwnerName? = null

The name of the owner of the namespace (optional).

Link copied to clipboard
val updatedAt: Long? = null

The timestamp when the namespace was last updated (optional).