point-api-go/post_show_response.go
2016-03-30 04:21:36 +03:00

9 lines
238 B
Go

package point
// PostShowResponse represents /api/post response including post data and comments
type PostShowResponse struct {
Post Post `json:"post"`
Comments []Comment `json:"comments"`
Error string `json:"error"`
}