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