Loggest thine Stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
393 B

package entities
type Scope struct {
ID int `json:"id"`
Name string `json:"name"`
Abbreviation string `json:"abbreviation"`
CustomLabels map[string]string `json:"customLabels"`
}
type ScopeMember struct {
ScopeID int `json:"scopeId"`
UserID string `json:"userId"`
Name string `json:"name"`
Owner bool `json:"owner"`
}