StudentLoanAccountsSummary.fromJson constructor

StudentLoanAccountsSummary.fromJson(
  1. dynamic json
)

Implementation

StudentLoanAccountsSummary.fromJson(dynamic json) {
  _outstandingBalance = json['outstandingBalance'];
  _outstandingInterest = json['outstandingInterest'];
  _regularMonthlyPayment = json['regularMonthlyPayment'];
  _pendingLoanTermInMonths = json['pendingLoanTermInMonths'];
  _expectedPayoffDate = json['expectedPayoffDate'];
  _interestRate = json['interestRate'];
  _originalPrincipalAmount = json['originalPrincipalAmount'];
  _principalBalance = json['principalBalance'];
  _recommendedLoanId = json['recommendedLoanId'];
}