Pod

@Serializable
data class Pod(val podId: String, val updatedAt: Instant, val createdAt: Instant)

Represents a pod (isolated workspace) with its ID and timestamps.

Constructors

Link copied to clipboard
constructor(podId: String, updatedAt: Instant, createdAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "pod_id")
val podId: String
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant