forked from DrFaust92/bitbucket-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_issue_change.go
26 lines (24 loc) · 1009 Bytes
/
model_issue_change.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
/*
* 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"
)
// An issue change.
type IssueChange struct {
Type_ string `json:"type"`
Links *IssueChangeLinks `json:"links,omitempty"`
Name string `json:"name,omitempty"`
CreatedOn time.Time `json:"created_on,omitempty"`
User *Account `json:"user,omitempty"`
Issue *Issue `json:"issue,omitempty"`
Changes *IssueChangeChanges `json:"changes,omitempty"`
Message *RenderedPullRequestMarkupTitle `json:"message,omitempty"`
}