mirror of
https://bitbucket.org/skobkin/point-tools-go.git
synced 2025-03-27 17:02:40 +00:00
12 lines
272 B
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"`
|
|
}
|