ApiKey

@Serializable
data class ApiKey(val apiKeyId: String, val name: String? = null, val updatedAt: Instant, val createdAt: Instant)

Represents an API key with its ID, optional name, and timestamps.

Constructors

Link copied to clipboard
constructor(apiKeyId: String, name: String? = null, updatedAt: Instant, createdAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "api_key_id")
val apiKeyId: String
Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
val name: String?
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant