Documentation
¶
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Example ¶
c := NewClient(Lang("ja"))
resp, err := c.Get(context.Background(), "com.cookpad.android.activities")
if err != nil {
log.Fatal(err)
}
Output: com.cookpad.android.activities
type Detail ¶
type Detail struct {
Title string `json:"title"`
Description string `json:"description"`
CoverArtURL string `json:"coverArtUrl"`
ContentRating string `json:"contentRating"`
// https://play.google.com/store/apps/category/${GenreID}
GenreID string `json:"genreId"`
Genre string `json:"genre"`
// https://play.google.com/store/apps/dev?id=${DeveloperID}
DeveloperID string `json:"developerId"`
Developer string `json:"developer"`
// app-ads.txt
DeveloperURL string `json:"developerUrl"`
BundleID string `json:"bundleId"`
StoreID string `json:"storeId"`
}
Click to show internal directories.
Click to hide internal directories.