Notes Response¶
LendingClub2 Notes Response Module
-
class
lendingclub2.response.notes.Note(response)¶ Information of a note
-
amount¶ Get the amount of the note
Returns: float
-
charged_off¶ Returns: boolean
-
current¶ Check if the payment for the note is current
Returns: boolean
-
grade¶ Get the grade of the note
Returns: string
-
id¶ Get the id of the note
Returns: int
-
late¶ Check if a note’s payment is late
Returns: boolean
-
loan_amount¶ Get the total amount of loan associated with the note
Returns: float
-
loan_id¶ Get the loan ID
Returns: int
-
loan_length¶ Get the total loan length in months
Returns: int
-
new¶ Check if a note is just issued
Returns: boolean
-
paid¶ Check if a note is fully paid
Returns: boolean
-
status¶ Get the status of the loan
Returns: string
-