api/src/main/java/org/apache/fineract/cn/deposit/api/v1/definition/domain/ProductDefinition.java [103:148]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Double getMinimumBalance() {
    return this.minimumBalance;
  }

  public void setMinimumBalance(final Double minimumBalance) {
    this.minimumBalance = minimumBalance;
  }

  public String getEquityLedgerIdentifier() {
    return this.equityLedgerIdentifier;
  }

  public void setEquityLedgerIdentifier(final String equityLedgerIdentifier) {
    this.equityLedgerIdentifier = equityLedgerIdentifier;
  }

  public String getCashAccountIdentifier() {
    return this.cashAccountIdentifier;
  }

  public void setCashAccountIdentifier(final String cashAccountIdentifier) {
    this.cashAccountIdentifier = cashAccountIdentifier;
  }

  public String getExpenseAccountIdentifier() {
    return this.expenseAccountIdentifier;
  }

  public void setExpenseAccountIdentifier(final String expenseAccountIdentifier) {
    this.expenseAccountIdentifier = expenseAccountIdentifier;
  }

  public String getAccrueAccountIdentifier() {
    return this.accrueAccountIdentifier;
  }

  public void setAccrueAccountIdentifier(final String accrueAccountIdentifier) {
    this.accrueAccountIdentifier = accrueAccountIdentifier;
  }

  public Double getInterest() {
    return this.interest;
  }

  public void setInterest(final Double interest) {
    this.interest = interest;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/deposit/service/internal/repository/ProductDefinitionEntity.java [118:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Double getMinimumBalance() {
    return this.minimumBalance;
  }

  public void setMinimumBalance(final Double minimumBalance) {
    this.minimumBalance = minimumBalance;
  }

  public String getEquityLedgerIdentifier() {
    return this.equityLedgerIdentifier;
  }

  public void setEquityLedgerIdentifier(final String equityLedgerIdentifier) {
    this.equityLedgerIdentifier = equityLedgerIdentifier;
  }

  public String getCashAccountIdentifier() {
    return this.cashAccountIdentifier;
  }

  public void setCashAccountIdentifier(final String cashAccountIdentifier) {
    this.cashAccountIdentifier = cashAccountIdentifier;
  }

  public String getExpenseAccountIdentifier() {
    return this.expenseAccountIdentifier;
  }

  public void setExpenseAccountIdentifier(final String expenseAccountIdentifier) {
    this.expenseAccountIdentifier = expenseAccountIdentifier;
  }

  public String getAccrueAccountIdentifier() {
    return this.accrueAccountIdentifier;
  }

  public void setAccrueAccountIdentifier(final String accrueAccountIdentifier) {
    this.accrueAccountIdentifier = accrueAccountIdentifier;
  }

  public Double getInterest() {
    return this.interest;
  }

  public void setInterest(final Double interest) {
    this.interest = interest;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



