point-tools-go/send_all_page_response.go

12 lines
272 B
Go

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"`
}