adamsaghy commented on code in PR #4465:
URL: https://github.com/apache/fineract/pull/4465#discussion_r2005571536
##########
fineract-rates/src/main/java/org/apache/fineract/portfolio/floatingrates/data/FloatingRatePeriodData.java:
##########
@@ -18,33 +18,33 @@
*/
package org.apache.fineract.portfolio.floatingrates.data;
+import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.OffsetDateTime;
+import lombok.Getter;
import org.apache.commons.lang3.builder.CompareToBuilder;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
+@Getter
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FloatingRatePeriodData implements
Comparable<FloatingRatePeriodData>, Serializable {
private Long id;
private LocalDate fromDate;
private BigDecimal interestRate;
- @JsonProperty("isDifferentialToBaseLendingRate")
Review Comment:
So you are saying after these changes the very same fields are returned, no
changes there?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]