github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/resources/revision_resource.go (about)

     1  package resources
     2  
     3  type Revision struct {
     4  	GUID        string  `json:"guid"`
     5  	Version     int     `json:"version"`
     6  	Deployable  bool    `json:"deployable"`
     7  	Description string  `json:"description"`
     8  	Droplet     Droplet `json:"droplet"`
     9  	CreatedAt   string  `json:"created_at"`
    10  	UpdatedAt   string  `json:"updated_at"`
    11  }