public DescribeDeploymentsResult unmarshall(JsonUnmarshallerContext context) throws Exception {
    DescribeDeploymentsResult describeDeploymentsResult = new DescribeDeploymentsResult();

    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("Deployments", targetDepth)) {
          context.nextToken();
          describeDeploymentsResult.setDeployments(
              new ListUnmarshaller<Deployment>(DeploymentJsonUnmarshaller.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 describeDeploymentsResult;
  }
  @Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;

    if (obj instanceof DescribeDeploymentsResult == false) return false;
    DescribeDeploymentsResult other = (DescribeDeploymentsResult) obj;

    if (other.getDeployments() == null ^ this.getDeployments() == null) return false;
    if (other.getDeployments() != null
        && other.getDeployments().equals(this.getDeployments()) == false) return false;
    return true;
  }