-
Notifications
You must be signed in to change notification settings - Fork 14
/
group.go
31 lines (22 loc) · 1005 Bytes
/
group.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
/*
* 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
type Group struct {
Type_ string `json:"type"`
Links *GroupLinks `json:"links,omitempty"`
Owner *Account `json:"owner,omitempty"`
Name string `json:"name,omitempty"`
// The \"sluggified\" version of the group's name. This contains only ASCII characters and can therefore be slightly different than the name
Slug string `json:"slug,omitempty"`
// The concatenation of the owner's username and the group's slug, separated with a colon (e.g. `acme:developers`)
FullSlug string `json:"full_slug,omitempty"`
// The number of members in this group
Members int32 `json:"members,omitempty"`
}