| 399 | } |
| 400 | |
| 401 | type NewsArticle struct { |
| 402 | Title string `json:"title" xml:"title"` |
| 403 | Url StoryURL `json:"url" xml:"url"` |
| 404 | Description string `json:"description" xml:"description"` |
| 405 | TweetCount int `json:"tweet_count" xml:"tweet_count"` |
| 406 | Attribution string `json:"attribution" xml:"attribution"` |
| 407 | Score float32 `json:"score" xml:"score"` |
| 408 | Query string `json:"query" xml:"query"` |
| 409 | Name string `json:"name" xml:"name"` // no clue what the difference is between name and title. i guess the article's author |
| 410 | Media []StoryMediaInfo `json:"media" xml:"media"` |
| 411 | } |
| 412 | |
| 413 | type SocialProof struct { |
| 414 | Type string `json:"social_proof_type" xml:"social_proof_type"` // social or query |
nothing calls this directly
no outgoing calls
no test coverage detected