修改job返回的错误信息

This commit is contained in:
zhangwei 2024-11-04 12:03:31 +08:00
parent 7b15354c37
commit d3a6eb9516
1 changed files with 4 additions and 2 deletions

View File

@ -106,8 +106,10 @@ type GetJobReq struct {
type GetJobResp struct {
Errors []struct {
Error string `json:"error"`
Errno int `json:"errno"`
Description string `json:"description"`
ErrorNumber int `json:"error_number"`
Error string `json:"error"`
Source string `json:"source"`
} `json:"errors"`
Jobs []struct {
Account string `json:"account"`