Account¶
LendingClub2 Account Module
- Interface classes:
- InvestorAccount
-
class
lendingclub2.account.InvestorAccount¶ Representation of an investor account in Lending Club.
-
available_balance¶ Get the amount of cash that’s available.
Returns: float
-
classmethod
id()¶ Get the account ID.
Returns: string
-
invest(*order_notes)¶ Invest to loans as specified.
Parameters: order_notes – iterable of instance of OrderNote.
-
portfolios¶ Get the portfolios associated with the account.
Returns: instance of Portfolios.
-
total_balance¶ Get the total balance of the account.
Returns: float
-