-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdeployment.go
More file actions
27 lines (20 loc) · 790 Bytes
/
deployment.go
File metadata and controls
27 lines (20 loc) · 790 Bytes
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
/*
* 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: support@bitbucket.org
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package bitbucket
type Deployment struct {
Type_ string `json:"type"`
// The UUID identifying the deployment.
Uuid string `json:"uuid,omitempty"`
State *DeploymentState `json:"state,omitempty"`
// A deployment environment.
Environment *DeploymentEnvironment `json:"environment,omitempty"`
// The release associated with this deployment.
Release *DeploymentRelease `json:"release,omitempty"`
}