code.cloudfoundry.org/cli@v7.1.0+incompatible/resources/user_resource.go (about) 1 package resources 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 }