payloadAs
Decode this hit's payload into T with json, or return null if the hit carries no payload.
@Serializable data class Article(val title: String, val lang: String)
val article: Article? = hit.payloadAs<Article>()Content copied to clipboard
Decode this record's payload into T with json, or return null if it carries no payload.