1package hackernews
2
3type Story struct {
4	By          string `json:"by"`
5	Descendants int    `json:"descendants"`
6	ID          int    `json:"id"`
7	Kids        []int  `json:"kids"`
8	Score       int    `json:"score"`
9	Time        int    `json:"time"`
10	Title       string `json:"title"`
11	Type        string `json:"type"`
12	URL         string `json:"url"`
13}
14