public boolean equals()

in api/src/main/java/org/apache/fineract/cn/customer/api/v1/domain/CustomerDocument.java [83:90]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    CustomerDocument that = (CustomerDocument) o;
    return completed == that.completed &&
        Objects.equals(identifier, that.identifier) &&
        Objects.equals(description, that.description);
  }