mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2024-12-13 08:18:35 +00:00
9 lines
239 B
Go
9 lines
239 B
Go
package point
|
|
|
|
// 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"`
|
|
}
|