-
Notifications
You must be signed in to change notification settings - Fork 14
/
issue_job_status.go
32 lines (24 loc) · 956 Bytes
/
issue_job_status.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Bitbucket API
*
* Code against the Bitbucket API to automate simple tasks, embed Bitbucket data into your own site, build mobile or desktop apps, or even add custom UI add-ons into Bitbucket itself using the Connect framework.
*
* API version: 2.0
* Contact: [email protected]
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package bitbucket
// The status of an import or export job
type IssueJobStatus struct {
Type_ string `json:"type,omitempty"`
// The status of the import/export job
Status string `json:"status,omitempty"`
// The phase of the import/export job
Phase string `json:"phase,omitempty"`
// The total number of issues being imported/exported
Total int32 `json:"total,omitempty"`
// The total number of issues already imported/exported
Count int32 `json:"count,omitempty"`
// The percentage of issues already imported/exported
Pct float32 `json:"pct,omitempty"`
}