* - **posts**.xml - Id - PostTypeId - 1: Question - 2: Answer - ParentID (only present if PostTypeId is 2) - AcceptedAnswerId (only present if PostTypeId is 1) - CreationDate - Score - ViewCount - Body - OwnerUserI
| 37 | - FavoriteCount |
| 38 | */ |
| 39 | type SourcePost struct { |
| 40 | PostTypeId int `xml:"PostTypeId,attr"` |
| 41 | CreationDate string `xml:"CreationDate,attr"` // "2008-07-31T21:42:52.667" |
| 42 | Tags string `xml:"Tags,attr"` |
| 43 | } |
| 44 | |
| 45 | type Post struct { |
| 46 | PostTypeId int |
nothing calls this directly
no outgoing calls
no test coverage detected