| 362 | } |
| 363 | |
| 364 | type Story struct { |
| 365 | Type string `json:"type" xml:"type"` // news or topic |
| 366 | Score float32 `json:"score" xml:"score"` |
| 367 | Data StoryData `json:"data" xml:"data"` |
| 368 | SocialProof SocialProof `json:"social_proof" xml:"social_proof"` |
| 369 | } |
| 370 | |
| 371 | type StoryData struct { |
| 372 | Title string `json:"title" xml:"title"` |
nothing calls this directly
no outgoing calls
no test coverage detected