github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/resources/stack_resource.go (about) 1 package resources 2 3 type Stack struct { 4 // GUID is a unique stack identifier. 5 GUID string `json:"guid"` 6 // Name is the name of the stack. 7 Name string `json:"name"` 8 // Description is the description for the stack 9 Description string `json:"description"` 10 11 // Metadata is used for custom tagging of API resources 12 Metadata *Metadata `json:"metadata,omitempty"` 13 }