github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/resources/revision_resource.go (about)

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