UNPKG

fineract_sdk

Version:

Wrapper around fineract api.

206 lines (200 loc) 7.67 kB
/* tslint:disable */ /* eslint-disable */ /** * 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 { GetFixedDepositAccountsAccountChart } from './get-fixed-deposit-accounts-account-chart'; import { GetFixedDepositAccountsAccountIdCurrency } from './get-fixed-deposit-accounts-account-id-currency'; import { GetFixedDepositAccountsAccountIdSummary } from './get-fixed-deposit-accounts-account-id-summary'; import { GetFixedDepositAccountsDepositPeriodFrequency } from './get-fixed-deposit-accounts-deposit-period-frequency'; import { GetFixedDepositAccountsInterestCalculationDaysInYearType } from './get-fixed-deposit-accounts-interest-calculation-days-in-year-type'; import { GetFixedDepositAccountsInterestCalculationType } from './get-fixed-deposit-accounts-interest-calculation-type'; import { GetFixedDepositAccountsInterestCompoundingPeriodType } from './get-fixed-deposit-accounts-interest-compounding-period-type'; import { GetFixedDepositAccountsInterestPostingPeriodType } from './get-fixed-deposit-accounts-interest-posting-period-type'; import { GetFixedDepositAccountsMaxDepositTermType } from './get-fixed-deposit-accounts-max-deposit-term-type'; import { GetFixedDepositAccountsMinDepositTermType } from './get-fixed-deposit-accounts-min-deposit-term-type'; import { GetFixedDepositAccountsStatus } from './get-fixed-deposit-accounts-status'; import { GetFixedDepositAccountsTimeline } from './get-fixed-deposit-accounts-timeline'; /** * GetFixedDepositAccountsAccountIdResponse * @export * @interface GetFixedDepositAccountsAccountIdResponse */ export interface GetFixedDepositAccountsAccountIdResponse { /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ id?: number; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ accountNo?: number; /** * * @type {string} * @memberof GetFixedDepositAccountsAccountIdResponse */ externalId?: string; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ clientId?: number; /** * * @type {string} * @memberof GetFixedDepositAccountsAccountIdResponse */ clientName?: string; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ savingsProductId?: number; /** * * @type {string} * @memberof GetFixedDepositAccountsAccountIdResponse */ savingsProductName?: string; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ fieldOfficerId?: number; /** * * @type {GetFixedDepositAccountsStatus} * @memberof GetFixedDepositAccountsAccountIdResponse */ status?: GetFixedDepositAccountsStatus; /** * * @type {GetFixedDepositAccountsTimeline} * @memberof GetFixedDepositAccountsAccountIdResponse */ timeline?: GetFixedDepositAccountsTimeline; /** * * @type {GetFixedDepositAccountsAccountIdCurrency} * @memberof GetFixedDepositAccountsAccountIdResponse */ currency?: GetFixedDepositAccountsAccountIdCurrency; /** * * @type {GetFixedDepositAccountsInterestCompoundingPeriodType} * @memberof GetFixedDepositAccountsAccountIdResponse */ interestCompoundingPeriodType?: GetFixedDepositAccountsInterestCompoundingPeriodType; /** * * @type {GetFixedDepositAccountsInterestPostingPeriodType} * @memberof GetFixedDepositAccountsAccountIdResponse */ interestPostingPeriodType?: GetFixedDepositAccountsInterestPostingPeriodType; /** * * @type {GetFixedDepositAccountsInterestCalculationType} * @memberof GetFixedDepositAccountsAccountIdResponse */ interestCalculationType?: GetFixedDepositAccountsInterestCalculationType; /** * * @type {GetFixedDepositAccountsInterestCalculationDaysInYearType} * @memberof GetFixedDepositAccountsAccountIdResponse */ interestCalculationDaysInYearType?: GetFixedDepositAccountsInterestCalculationDaysInYearType; /** * * @type {boolean} * @memberof GetFixedDepositAccountsAccountIdResponse */ interestFreePeriodApplicable?: boolean; /** * * @type {boolean} * @memberof GetFixedDepositAccountsAccountIdResponse */ preClosurePenalApplicable?: boolean; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ minDepositTerm?: number; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ maxDepositTerm?: number; /** * * @type {GetFixedDepositAccountsMinDepositTermType} * @memberof GetFixedDepositAccountsAccountIdResponse */ minDepositTermType?: GetFixedDepositAccountsMinDepositTermType; /** * * @type {GetFixedDepositAccountsMaxDepositTermType} * @memberof GetFixedDepositAccountsAccountIdResponse */ maxDepositTermType?: GetFixedDepositAccountsMaxDepositTermType; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ depositAmount?: number; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ maturityAmount?: number; /** * * @type {string} * @memberof GetFixedDepositAccountsAccountIdResponse */ maturityDate?: string; /** * * @type {number} * @memberof GetFixedDepositAccountsAccountIdResponse */ depositPeriod?: number; /** * * @type {GetFixedDepositAccountsDepositPeriodFrequency} * @memberof GetFixedDepositAccountsAccountIdResponse */ depositPeriodFrequency?: GetFixedDepositAccountsDepositPeriodFrequency; /** * * @type {GetFixedDepositAccountsAccountIdSummary} * @memberof GetFixedDepositAccountsAccountIdResponse */ summary?: GetFixedDepositAccountsAccountIdSummary; /** * * @type {GetFixedDepositAccountsAccountChart} * @memberof GetFixedDepositAccountsAccountIdResponse */ accountChart?: GetFixedDepositAccountsAccountChart; }