mirror of
https://bitbucket.org/skobkin/point-tools-go.git
synced 2024-11-22 04:46:03 +00:00
17 lines
350 B
Go
17 lines
350 B
Go
|
package point_tools
|
||
|
|
||
|
const (
|
||
|
STATUS_SUCCESS string = "success"
|
||
|
STATUS_FAILURE string = "fail"
|
||
|
)
|
||
|
|
||
|
type SendAllPageResponse struct {
|
||
|
Status string `json:"status"`
|
||
|
Data SendAllPageResponseData `json:"data"`
|
||
|
Error ApiError `json:"error"`
|
||
|
}
|
||
|
|
||
|
type SendAllPageResponseData struct {
|
||
|
Continue bool `json:"continue"`
|
||
|
}
|