in api/src/main/java/org/apache/fineract/cn/notification/api/v1/domain/SMSConfiguration.java [103:111]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SMSConfiguration that = (SMSConfiguration) o;
return Objects.equals(identifier, that.identifier) &&
Objects.equals(auth_token, that.auth_token) &&
Objects.equals(account_sid, that.account_sid) &&
Objects.equals(state, that.state);
}