point-tools-crawler/point/post.go

13 lines
358 B
Go
Raw Normal View History

2016-03-15 22:21:50 +00:00
package point
type Post struct {
2016-03-22 19:47:37 +00:00
Id string `json:"id"`
Author User `json:"author"`
Tags []string `json:"tags"`
Text string `json:"text"`
CommentsCount int `json:"comments_count"`
Created string `json:"created"`
Pinned bool `json:"pinned"`
Private bool `json:"private"`
2016-03-15 22:21:50 +00:00
}