CreditBankIncomeSource constructor

CreditBankIncomeSource({
  1. String? incomeSourceId,
  2. String? incomeDescription,
  3. CreditBankIncomeCategory? incomeCategory,
  4. String? accountId,
  5. DateTime? startDate,
  6. DateTime? endDate,
  7. CreditBankIncomePayFrequency? payFrequency,
  8. double? totalAmount,
  9. int? transactionCount,
  10. List<CreditBankIncomeHistoricalSummary>? historicalSummary,
})

Implementation

CreditBankIncomeSource({
  this.incomeSourceId,
  this.incomeDescription,
  this.incomeCategory,
  this.accountId,
  this.startDate,
  this.endDate,
  this.payFrequency,
  this.totalAmount,
  this.transactionCount,
  this.historicalSummary,
});