| 13 | } |
| 14 | |
| 15 | type Install struct { |
| 16 | ID *int64 `json:"id,omitempty"` |
| 17 | AppID *int64 `json:"app_id,omitempty"` |
| 18 | AppSlug *string `json:"app_slug,omitempty"` |
| 19 | NodeID *string `json:"node_id,omitempty"` |
| 20 | TargetID *int64 `json:"target_id,omitempty"` |
| 21 | Account *github.User `json:"account,omitempty"` |
| 22 | TargetType *string `json:"target_type,omitempty"` |
| 23 | RepositorySelection *string `json:"repository_selection,omitempty"` |
| 24 | Permissions *github.InstallationPermissions `json:"permissions,omitempty"` |
| 25 | CreatedAt *github.Timestamp `json:"created_at,omitempty"` |
| 26 | HasMultipleSingleFiles *bool `json:"has_multiple_single_files,omitempty"` |
| 27 | SuspendedBy *github.User `json:"suspended_by,omitempty"` |
| 28 | SuspendedAt *github.Timestamp `json:"suspended_at,omitempty"` |
| 29 | } |
| 30 | |
| 31 | // OrgCoreStats is the subset of Org attributes / statistics we care about from |
| 32 | // the github.Organization attributes |
nothing calls this directly
no outgoing calls
no test coverage detected