@@ -18,18 +18,19 @@ type AppsService service
18
18
19
19
// App represents a GitHub App.
20
20
type App struct {
21
- ID * int64 `json:"id,omitempty"`
22
- Slug * string `json:"slug,omitempty"`
23
- NodeID * string `json:"node_id,omitempty"`
24
- Owner * User `json:"owner,omitempty"`
25
- Name * string `json:"name,omitempty"`
26
- Description * string `json:"description,omitempty"`
27
- ExternalURL * string `json:"external_url,omitempty"`
28
- HTMLURL * string `json:"html_url,omitempty"`
29
- CreatedAt * Timestamp `json:"created_at,omitempty"`
30
- UpdatedAt * Timestamp `json:"updated_at,omitempty"`
31
- Permissions * InstallationPermissions `json:"permissions,omitempty"`
32
- Events []string `json:"events,omitempty"`
21
+ ID * int64 `json:"id,omitempty"`
22
+ Slug * string `json:"slug,omitempty"`
23
+ NodeID * string `json:"node_id,omitempty"`
24
+ Owner * User `json:"owner,omitempty"`
25
+ Name * string `json:"name,omitempty"`
26
+ Description * string `json:"description,omitempty"`
27
+ ExternalURL * string `json:"external_url,omitempty"`
28
+ HTMLURL * string `json:"html_url,omitempty"`
29
+ CreatedAt * Timestamp `json:"created_at,omitempty"`
30
+ UpdatedAt * Timestamp `json:"updated_at,omitempty"`
31
+ Permissions * InstallationPermissions `json:"permissions,omitempty"`
32
+ Events []string `json:"events,omitempty"`
33
+ InstallationsCount int `json:"installations_count,omitempty"`
33
34
}
34
35
35
36
// InstallationToken represents an installation token.
0 commit comments