/**
 * Apache Fineract
 * Apache Fineract is a secure, multi-tenanted microfinance platform  The goal of the Apache Fineract API is to empower developers to build apps on top of the Apache Fineract Platform<br>The [reference app](https://cui.fineract.dev) (username: mifos, password: password) works on the same demo tenant as the interactive links in this documentation  - The API is organized around [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) - Find out more about Apache Fineract [here](/fineract-provider/api-docs/apiLive.htm#top) - You can [Try The API From Your Browser](/fineract-provider/api-docs/apiLive.htm#interact) - The Generic Options are available [here](/fineract-provider/api-docs/apiLive.htm#genopts) - Find out more about [Updating Dates and Numbers](/fineract-provider/api-docs/apiLive.htm#dates_and_numbers) - For the Authentication and the Basic of HTTP and HTTPS refer [here](/fineract-provider/api-docs/apiLive.htm#authentication_overview) - Check about ERROR codes [here](/fineract-provider/api-docs/apiLive.htm#errors)  Please refer to the [old documentation](/fineract-provider/api-docs/apiLive.htm) for any documentation queries
 *
 * The version of the OpenAPI document: 1.5.0-66-gffae7d4-dirty
 * Contact: dev@fineract.apache.org
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { GetRecurringDepositProductsAccountingRule } from './get-recurring-deposit-products-accounting-rule';
import { GetRecurringDepositProductsCurrency } from './get-recurring-deposit-products-currency';
import { GetRecurringDepositProductsInterestCalculationDaysInYearType } from './get-recurring-deposit-products-interest-calculation-days-in-year-type';
import { GetRecurringDepositProductsInterestCalculationType } from './get-recurring-deposit-products-interest-calculation-type';
import { GetRecurringDepositProductsInterestCompoundingPeriodType } from './get-recurring-deposit-products-interest-compounding-period-type';
import { GetRecurringDepositProductsInterestPostingPeriodType } from './get-recurring-deposit-products-interest-posting-period-type';
import { GetRecurringDepositProductsMaxDepositTermType } from './get-recurring-deposit-products-max-deposit-term-type';
import { GetRecurringDepositProductsMinDepositTermType } from './get-recurring-deposit-products-min-deposit-term-type';
import { GetRecurringDepositProductsRecurringDepositFrequencyType } from './get-recurring-deposit-products-recurring-deposit-frequency-type';
/**
 * GetRecurringDepositProductsResponse
 * @export
 * @interface GetRecurringDepositProductsResponse
 */
export interface GetRecurringDepositProductsResponse {
    /**
     *
     * @type {number}
     * @memberof GetRecurringDepositProductsResponse
     */
    id?: number;
    /**
     *
     * @type {string}
     * @memberof GetRecurringDepositProductsResponse
     */
    name?: string;
    /**
     *
     * @type {string}
     * @memberof GetRecurringDepositProductsResponse
     */
    shortName?: string;
    /**
     *
     * @type {string}
     * @memberof GetRecurringDepositProductsResponse
     */
    description?: string;
    /**
     *
     * @type {GetRecurringDepositProductsCurrency}
     * @memberof GetRecurringDepositProductsResponse
     */
    currency?: GetRecurringDepositProductsCurrency;
    /**
     *
     * @type {number}
     * @memberof GetRecurringDepositProductsResponse
     */
    recurringDepositFrequency?: number;
    /**
     *
     * @type {GetRecurringDepositProductsRecurringDepositFrequencyType}
     * @memberof GetRecurringDepositProductsResponse
     */
    recurringDepositFrequencyType?: GetRecurringDepositProductsRecurringDepositFrequencyType;
    /**
     *
     * @type {boolean}
     * @memberof GetRecurringDepositProductsResponse
     */
    preClosurePenalApplicable?: boolean;
    /**
     *
     * @type {number}
     * @memberof GetRecurringDepositProductsResponse
     */
    minDepositTerm?: number;
    /**
     *
     * @type {number}
     * @memberof GetRecurringDepositProductsResponse
     */
    maxDepositTerm?: number;
    /**
     *
     * @type {GetRecurringDepositProductsMinDepositTermType}
     * @memberof GetRecurringDepositProductsResponse
     */
    minDepositTermType?: GetRecurringDepositProductsMinDepositTermType;
    /**
     *
     * @type {GetRecurringDepositProductsMaxDepositTermType}
     * @memberof GetRecurringDepositProductsResponse
     */
    maxDepositTermType?: GetRecurringDepositProductsMaxDepositTermType;
    /**
     *
     * @type {number}
     * @memberof GetRecurringDepositProductsResponse
     */
    nominalAnnualInterestRate?: number;
    /**
     *
     * @type {GetRecurringDepositProductsInterestCompoundingPeriodType}
     * @memberof GetRecurringDepositProductsResponse
     */
    interestCompoundingPeriodType?: GetRecurringDepositProductsInterestCompoundingPeriodType;
    /**
     *
     * @type {GetRecurringDepositProductsInterestPostingPeriodType}
     * @memberof GetRecurringDepositProductsResponse
     */
    interestPostingPeriodType?: GetRecurringDepositProductsInterestPostingPeriodType;
    /**
     *
     * @type {GetRecurringDepositProductsInterestCalculationType}
     * @memberof GetRecurringDepositProductsResponse
     */
    interestCalculationType?: GetRecurringDepositProductsInterestCalculationType;
    /**
     *
     * @type {GetRecurringDepositProductsInterestCalculationDaysInYearType}
     * @memberof GetRecurringDepositProductsResponse
     */
    interestCalculationDaysInYearType?: GetRecurringDepositProductsInterestCalculationDaysInYearType;
    /**
     *
     * @type {GetRecurringDepositProductsAccountingRule}
     * @memberof GetRecurringDepositProductsResponse
     */
    accountingRule?: GetRecurringDepositProductsAccountingRule;
}
