Struct plaid::liabilities::StudentLoanLiability [−][src]
Fields
account_id: Option<String>The ID of the account that this liability belongs to.
account_number: Option<String>The account number of the loan.
disbursement_dates: Option<Vec<NaiveDate>>The dates on which loaned funds were disbursed or will be disbursed. These are often in the past. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
expected_payoff_date: Option<String>The date when the student loan is expected to be paid off. Availability for this field is limited. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
guarantor: Option<String>The guarantor of the student loan.
interest_rate_percentage: f64The interest rate on the loan as a percentage.
is_overdue: Option<bool>true if a payment is currently overdue. Availability for this field is limited.
last_payment_amount: Option<f64>The amount of the last payment.
last_payment_date: Option<NaiveDate>The date of the last payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
last_statement_balance: Option<f64>The outstanding balance on the last statement. This field could also be interpreted as the next payment due. Availability for this field is limited.
last_statement_issue_date: Option<NaiveDate>The date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
loan_name: Option<String>The type of loan, e.g., "Consolidation Loans".
loan_status: StudentLoanStatusAn object representing the status of the student loan
minimum_payment_amount: Option<f64>The minimum payment due for the next billing cycle.
next_payment_due_date: Option<NaiveDate>The due date for the next payment.
origination_date: Option<NaiveDate>The date on which the loan was initially lent. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
origination_principal_amount: Option<f64>The original principal balance of the loan.
origination_interest_amount: Option<f64>The total dollar amount of the accrued interest balance. For Sallie Mae ( ins_116944), this amount is included in the current balance of the loan, so this field will return as null.
payment_reference_number: Option<String>The relevant account number that should be used to reference this loan for payments. In the majority of cases, payment_reference_number will match account_number, but in some institutions, such as Great Lakes (ins_116861), it will be different.
pslf_status: PSLFStatusInformation about the student's eligibility in the Public Service Loan Forgiveness program. This is only returned if the institution is Fedloan (ins_116527).
repayment_plan: StudentLoanRepaymentPlanAn object representing the repayment plan for the student loan
sequence_number: Option<String>The sequence number of the student loan. Heartland ECSI (ins_116948) does not make this field available.
servicer_address: StudentLoanServicerAddressThe address of the student loan servicer. This is generally the remittance address to which payments should be sent.
ytd_interest_paid: Option<f64>The year to date (YTD) interest paid. Availability for this field is limited.
ytd_principal_paid: Option<f64>The year to date (YTD) principal paid. Availability for this field is limited.
Trait Implementations
impl Clone for StudentLoanLiability[src]
fn clone(&self) -> StudentLoanLiability[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for StudentLoanLiability[src]
impl<'de> Deserialize<'de> for StudentLoanLiability[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for StudentLoanLiability[src]
impl Send for StudentLoanLiability[src]
impl Sync for StudentLoanLiability[src]
impl Unpin for StudentLoanLiability[src]
impl UnwindSafe for StudentLoanLiability[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,