mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
25 lines
723 B
Go
25 lines
723 B
Go
|
package v1
|
||
|
|
||
|
type DataDumpViewModel struct {
|
||
|
Data []*DataDumpData `json:"data"`
|
||
|
Total int `json:"total"`
|
||
|
TotalPages int `json:"total_pages"`
|
||
|
}
|
||
|
|
||
|
type DataDumpResultViewModel struct {
|
||
|
Data *DataDumpData `json:"data"`
|
||
|
}
|
||
|
|
||
|
type DataDumpData struct {
|
||
|
Id string `json:"id"`
|
||
|
Type string `json:"type"`
|
||
|
DownloadUrl string `json:"download_url"`
|
||
|
Status string `json:"status"`
|
||
|
PercentComplete float32 `json:"percent_complete"`
|
||
|
Expires string `json:"expires"`
|
||
|
CreatedAt string `json:"created_at"`
|
||
|
HasFailed bool `json:"has_failed"`
|
||
|
IsStuck bool `json:"is_stuck"`
|
||
|
IsProcessing bool `json:"is_processing"`
|
||
|
}
|