point-tools-go/send_all_page_response.go

12 lines
272 B
Go
Raw Permalink Normal View History

2016-03-30 02:04:04 +00:00
package point_tools
type SendAllPageResponse struct {
Status string `json:"status"`
Data SendAllPageResponseData `json:"data"`
Error ApiError `json:"error"`
}
type SendAllPageResponseData struct {
Continue bool `json:"continue"`
}