2016-03-15 22:21:50 +00:00
|
|
|
package point
|
|
|
|
|
|
|
|
type Page struct {
|
2016-03-20 22:06:34 +00:00
|
|
|
HasNext bool `json:"has_next"`
|
2016-03-15 22:21:50 +00:00
|
|
|
Posts []MetaPost `json:"posts"`
|
2016-03-20 22:06:34 +00:00
|
|
|
Error string `json:"error"`
|
2016-03-15 22:21:50 +00:00
|
|
|
}
|