github.com/lukasheimann/cloudfoundrycli@v7.1.0+incompatible/resources/space_resource.go (about) 1 package resources 2 3 // Space represents a Cloud Controller V3 Space. 4 type Space struct { 5 // GUID is a unique space identifier. 6 GUID string `json:"guid,omitempty"` 7 // Name is the name of the space. 8 Name string `json:"name"` 9 // Relationships list the relationships to the space. 10 Relationships Relationships `json:"relationships,omitempty"` 11 // Metadata is used for custom tagging of API resources 12 Metadata *Metadata `json:"metadata,omitempty"` 13 }