VersionResponse

@Serializable
data class VersionResponse(val version: Long)

The wire shape of a cache-version check — the backend's current content version, compared against the client's own locally cached version (CheckCacheVersionUseCase) to decide whether cached screens/graph should be invalidated. Consumed only at the repository layer.

Constructors

Link copied to clipboard
constructor(version: Long)

Properties

Link copied to clipboard
@SerialName(value = "version")
val version: Long

the backend's current content version — any change from the last known value invalidates the local cache.