User represents a Cloud Controller User.
| 2 | |
| 3 | // User represents a Cloud Controller User. |
| 4 | type User struct { |
| 5 | // GUID is the unique user identifier. |
| 6 | GUID string `json:"guid"` |
| 7 | Username string `json:"username"` |
| 8 | PresentationName string `json:"presentation_name"` |
| 9 | Origin string `json:"origin"` |
| 10 | } |
| 11 | |
| 12 | type K8sUser struct { |
| 13 | Name string `json:"name"` |
no outgoing calls
no test coverage detected