Books
RPCS
- NewYorkTimes.getBestSellerLists()
Get the best seller list names.
- NewYorkTimes.getBestSellers(list: BestSellerList, date: Date?)
Get the best selling books for a given list and date.
Arguments:
list: BestSellerList(BestSellerList)date: Date?(Date)
Returns:
List<BestSeller>(List)
- NewYorkTimes.getTopBestSellers(date: Date)
Get the top 5 books for all the best seller lists for a given date.
Arguments:
date: Date(Date)
Returns:
List<BestSeller>(List)
- NewYorkTimes.searchBestSellers(title: String?, author: String?, offset: BoundedNumber<0>?)
Search for books on current or previous best seller lists.
Arguments:
title: String?(String)author: String?(String)offset: BoundedNumber<0>?(BoundedNumber)
Returns:
List<Book>(List)