Skip to content

Commit

Permalink
fix: 修复 SnapshotService.CreateSnapshots Output 解析错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkiiiiiice committed May 13, 2024
1 parent 20c1ef5 commit 09c3c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (v *CreateSnapshotsInput) Validate() error {
type CreateSnapshotsOutput struct {
Message *string `json:"message" name:"message"`
Action *string `json:"action" name:"action" location:"elements"`
JobID *string `json:"job_id" name:"job_id" location:"elements"`
JobID *[]string `json:"job_id" name:"job_id" location:"elements"`
RetCode *int `json:"ret_code" name:"ret_code" location:"elements"`
Snapshots []*string `json:"snapshots" name:"snapshots" location:"elements"`
}
Expand Down

0 comments on commit 09c3c0d

Please sign in to comment.