in serverless-workflow-examples/serverless-workflow-loanbroker-showcase/loanbroker-ui/src/main/java/org/acme/loanbroker/domain/QuotesResponse.java [86:100]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
QuotesResponse that = (QuotesResponse) o;
return amount == that.amount &&
term == that.term &&
Objects.equals(credit, that.credit) &&
Objects.equals(quotes, that.quotes) &&
Objects.equals(loanRequestId, that.loanRequestId) &&
Objects.equals(eventType, that.eventType);
}