public class HealthStatus extends AbstractModel
Constructor and Description |
---|
HealthStatus() |
HealthStatus(HealthStatus source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getHealthLevel()
Get Health level.
|
Long |
getHealthScore()
Get Health score out of 100 points.
|
ScoreDetail[] |
getScoreDetails()
Get Deduction details.
|
Long |
getScoreLost()
Get Total scores deducted.
|
void |
setHealthLevel(String HealthLevel)
Set Health level.
|
void |
setHealthScore(Long HealthScore)
Set Health score out of 100 points.
|
void |
setScoreDetails(ScoreDetail[] ScoreDetails)
Set Deduction details.
|
void |
setScoreLost(Long ScoreLost)
Set Total scores deducted.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public HealthStatus()
public HealthStatus(HealthStatus source)
public Long getHealthScore()
public void setHealthScore(Long HealthScore)
HealthScore
- Health score out of 100 points.public String getHealthLevel()
public void setHealthLevel(String HealthLevel)
HealthLevel
- Health level. Valid values: `HEALTH` (healthy), `SUB_HEALTH` (suboptimal), `RISK` (risky), and `HIGH_RISK` (critical).public Long getScoreLost()
public void setScoreLost(Long ScoreLost)
ScoreLost
- Total scores deducted.public ScoreDetail[] getScoreDetails()
public void setScoreDetails(ScoreDetail[] ScoreDetails)
ScoreDetails
- Deduction details.
Note: `null` may be returned for this field, indicating that no valid values can be obtained.Copyright © 2021. All rights reserved.