MdsMetadataBlob

@Serializable
data class MdsMetadataBlob(val no: Long, val nextUpdate: String, val entries: List<MdsEntry>)

Minimal representation of an MDS v3 metadata blob document.

Constructors

Link copied to clipboard
constructor(no: Long, nextUpdate: String, entries: List<MdsEntry>)

Properties

Link copied to clipboard
@SerialName(value = "entries")
val entries: List<MdsEntry>

Metadata entries carried by the blob.

Link copied to clipboard
@SerialName(value = "nextUpdate")
val nextUpdate: String

RFC3339-like timestamp advertised by the blob.

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

Metadata statement sequence number.