-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodel_app_user.go
28 lines (26 loc) · 1.01 KB
/
model_app_user.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
/*
* 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 AppUser struct {
Links *ModelError `json:"links,omitempty"`
CreatedOn time.Time `json:"created_on,omitempty"`
DisplayName string `json:"display_name,omitempty"`
Username string `json:"username,omitempty"`
Uuid string `json:"uuid,omitempty"`
// The user's Atlassian account ID.
AccountId string `json:"account_id,omitempty"`
// The status of the account. Currently the only possible value is \"active\", but more values may be added in the future.
AccountStatus string `json:"account_status,omitempty"`
// The kind of App User.
Kind string `json:"kind,omitempty"`
}