SearchPostsResponse

data class SearchPostsResponse(val cursor: String? = null, val hitsTotal: Long? = null, val posts: ReadOnlyList<PostView>)

Constructors

Link copied to clipboard
constructor(cursor: String? = null, hitsTotal: Long? = null, posts: ReadOnlyList<PostView>)

Properties

Link copied to clipboard
val cursor: String? = null
Link copied to clipboard
val hitsTotal: Long? = null

Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.

Link copied to clipboard