prosper-0.1.0.0: src/Prosper.hs
-- | These are bindings to the Prosper marketplace API.
-- The documentation for the API can be seen at
-- https://api.prosper.com/.
module Prosper
(
-- * Commands
invest
, account
, allListings
, notes
, listingFromNote
, AccountException (..)
-- * User
, User (..)
-- * Account
, Account (..)
, emptyAccount
-- * Listing
, Listing (..)
, Offer (..)
, Credit (..)
, Rating (..)
, Category (..)
, Status (..)
-- * Note
, NoteStatus (..)
, NoteDefaultReason (..)
, Note (..)
-- * Invest
, InvestStatus (..)
, InvestMessage (..)
, InvestResponse (..)
-- * Types
, Money
) where
import Prosper.Account
import Prosper.Commands
import Prosper.Invest
import Prosper.Listing
import Prosper.Money
import Prosper.Note
import Prosper.User