public boolean equals()

in aliyun-sdk-opensearch/src/main/java/com/aliyun/opensearch/client/OpenSearchResponse.java [98:117]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (!(o instanceof OpenSearchResponse)) return false;

    OpenSearchResponse that = (OpenSearchResponse) o;

    if (getRequest_id() != null ? !getRequest_id().equals(that.getRequest_id()) : that.getRequest_id() != null)
      return false;
    if (getStatus() != null ? !getStatus().equals(that.getStatus()) : that.getStatus() != null)
      return false;
    if (getErrors() != null ? !getErrors().equals(that.getErrors()) : that.getErrors() != null)
      return false;
    if (getResult() != null ? !getResult().equals(that.getResult()) : that.getResult() != null)
      return false;
    if (getChat() != null ? !getChat().equals(that.getChat()) : that.getChat() != null)
      return false;
    return getTracer() != null ? getTracer().equals(that.getTracer()) : that.getTracer() == null;


  }