point-api-go/page.go

9 lines
239 B
Go
Raw Permalink Normal View History

package point
2016-03-29 07:50:49 +00:00
// Page represents the basic feed API response which contains array of posts and has_next flag
type Page struct {
HasNext bool `json:"has_next"`
Posts []MetaPost `json:"posts"`
Error string `json:"error"`
}