public RefreshTrustedAdvisorCheckResult unmarshall(JsonUnmarshallerContext context)
      throws Exception {
    RefreshTrustedAdvisorCheckResult refreshTrustedAdvisorCheckResult =
        new RefreshTrustedAdvisorCheckResult();

    int originalDepth = context.getCurrentDepth();
    String currentParentElement = context.getCurrentParentElement();
    int targetDepth = originalDepth + 1;

    JsonToken token = context.getCurrentToken();
    if (token == null) token = context.nextToken();
    if (token == VALUE_NULL) return null;

    while (true) {
      if (token == null) break;

      if (token == FIELD_NAME || token == START_OBJECT) {
        if (context.testExpression("status", targetDepth)) {
          context.nextToken();
          refreshTrustedAdvisorCheckResult.setStatus(
              TrustedAdvisorCheckRefreshStatusJsonUnmarshaller.getInstance().unmarshall(context));
        }
      } else if (token == END_ARRAY || token == END_OBJECT) {
        if (context.getLastParsedParentElement() == null
            || context.getLastParsedParentElement().equals(currentParentElement)) {
          if (context.getCurrentDepth() <= originalDepth) break;
        }
      }
      token = context.nextToken();
    }

    return refreshTrustedAdvisorCheckResult;
  }
 /**
  * The current refresh status for a check, including the amount of time until the check is
  * eligible for refresh.
  *
  * @param status The current refresh status for a check, including the amount of time until the
  *     check is eligible for refresh.
  * @return Returns a reference to this object so that method calls can be chained together.
  */
 public RefreshTrustedAdvisorCheckResult withStatus(TrustedAdvisorCheckRefreshStatus status) {
   setStatus(status);
   return this;
 }