Skip to content

Commit 385c125

Browse files
committed
PERF-1311 Fix json parse
1 parent 11a1a4e commit 385c125

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

svc_queuedprocesses.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ type QueuedProcessService struct {
1717
// _____________________________________________________________________________________________________________________
1818

1919
type ProcessDetails struct {
20-
ItemsToProcess *int `json:"items_to_process",omitempty`
21-
ItemsProcessed *int `json:"items_processed",omitempty`
22-
DownloadUrl string `json:"download_url",omitempty`
23-
Progress string `json:"progress",omitempty`
24-
Stage string `json:"stage",omitempty`
20+
ItemsToProcess *int `json:"items_to_process,omitempty"`
21+
ItemsProcessed *int `json:"items_processed,omitempty"`
22+
DownloadUrl string `json:"download_url,omitempty"`
23+
Progress string `json:"progress,omitempty"`
24+
Stage string `json:"stage,omitempty"`
2525
}
2626

2727
type QueuedProcess struct {

0 commit comments

Comments
 (0)