-
Notifications
You must be signed in to change notification settings - Fork 14
/
deployment_state_completed.go
38 lines (28 loc) · 1.06 KB
/
deployment_state_completed.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
33
34
35
36
37
38
/*
* 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
import (
"time"
)
type DeploymentStateCompleted struct {
Type_ string `json:"type"`
// The name of deployment state (COMPLETED).
Name string `json:"name,omitempty"`
// Link to the deployment result.
Url string `json:"url,omitempty"`
// The Bitbucket account that was used to perform the deployment.
Deployer *Account `json:"deployer,omitempty"`
// The status of the completed deployment.
Status *DeploymentStateCompletedStatus `json:"status,omitempty"`
// The timestamp when the deployment was started.
StartDate time.Time `json:"start_date,omitempty"`
// The timestamp when the deployment completed.
CompletionDate time.Time `json:"completion_date,omitempty"`
}