Untitled
unknown
java
3 years ago
2.3 kB
10
Indexable
package es.santander.agprym.commonsaggregations.model.frontend;
import java.util.List;
/**
* The Class SavingsResponseDto.
*/
public class SavingsResponseDto {
private List<SavingsMonthDto> savingsMonth;
private String averageSaving;
private SavingsBufferDto buffer;
private Integer financialSituation;
private String financialSituationDescription;
/**
* Gets the savings month.
*
* @return the savings month
*/
public List<SavingsMonthDto> getSavingsMonth() {
return savingsMonth;
}
/**
* Sets the savings month.
*
* @param savingsMonth the new savings month
*/
public void setSavingsMonth(List<SavingsMonthDto> savingsMonth) {
this.savingsMonth = savingsMonth;
}
/**
* Gets the average saving.
*
* @return the average saving
*/
public String getAverageSaving() {
return averageSaving;
}
/**
* Sets the average saving.
*
* @param averageSaving the new average saving
*/
public void setAverageSaving(String averageSaving) {
this.averageSaving = averageSaving;
}
/**
* Gets the buffer.
*
* @return the buffer
*/
public SavingsBufferDto getBuffer() {
return buffer;
}
/**
* Sets the buffer.
*
* @param buffer the new buffer
*/
public void setBuffer(SavingsBufferDto buffer) {
this.buffer = buffer;
}
/**
* Gets the financial situation.
*
* @return the financial situation
*/
public Integer getFinancialSituation() {
return financialSituation;
}
/**
* Sets the financial situation.
*
* @param financialSituation the new financial situation
*/
public void setFinancialSituation(Integer financialSituation) {
this.financialSituation = financialSituation;
}
/**
* Gets the financial situation description.
*
* @return the financial situation description
*/
public String getFinancialSituationDescription() {
return financialSituationDescription;
}
/**
* Sets the financial situation description.
*
* @param financialSituationDescription the new financial situation description
*/
public void setFinancialSituationDescription(String financialSituationDescription) {
this.financialSituationDescription = financialSituationDescription;
}
}
Editor is loading...