RecommendedServerInfo

data class RecommendedServerInfo(address: String, responseTime: Long, score: RecommendedServerInfoScore, issues: Collection<RecommendedServerIssue>, systemInfo: Result<PublicSystemInfo>)

Functions

firstIssueOrNull
Link copied to clipboard
fun firstIssueOrNull(): RecommendedServerIssue?

The issues are ordered by importance. When showing a single issue to an end user you normally want to show the first one.

Properties

address
Link copied to clipboard
val address: String
issues
Link copied to clipboard
val issues: Collection<RecommendedServerIssue>
responseTime
Link copied to clipboard
val responseTime: Long
score
Link copied to clipboard
val score: RecommendedServerInfoScore
systemInfo
Link copied to clipboard
val systemInfo: Result<PublicSystemInfo>