github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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  }
    11  
    12  type K8sUser struct {
    13  	Name string `json:"name"`
    14  	Kind string `json:"kind"`
    15  }