Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Item ¶
type ItemDetail ¶
type ItemDetail struct {
ImageURL string
Price float64
ReleaseDate string
Type ItemType
StockStatus StockStatus
ArtistURL string
Title string
Artist string
Body string
SKU string
}
func Detail ¶
func Detail(path string) ItemDetail
type ItemSearch ¶
type ItemSearch struct {
Artist, Title string
Price float64
Type ItemType
ReleaseDate string
StockStatus StockStatus
ImageURL string
DetailRelativeURL string
}
func Search ¶
func Search(query string) []ItemSearch
type StockStatus ¶
type StockStatus string
const ( InStock StockStatus = "In Stock" OutOfStock StockStatus = "Out of Stock" NoLongerAvailable StockStatus = "No Longer Available" )
Click to show internal directories.
Click to hide internal directories.