mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
7b0bbcefe6
handle the import when there is already an active data dump exists. Resolves #502
29 lines
794 B
Go
29 lines
794 B
Go
package v1
|
|
|
|
type DataDumpViewModel struct {
|
|
Data []*DataDumpData `json:"data"`
|
|
Total int `json:"total"`
|
|
TotalPages int `json:"total_pages"`
|
|
}
|
|
|
|
type DataDumpResultErrorModel struct {
|
|
Error string `json:"error"`
|
|
}
|
|
|
|
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"`
|
|
}
|