github.com/rish1988/moby@v25.0.2+incompatible/api/types/image/image.go (about)

     1  package image
     2  
     3  import "time"
     4  
     5  // Metadata contains engine-local data about the image.
     6  type Metadata struct {
     7  	// LastTagTime is the date and time at which the image was last tagged.
     8  	LastTagTime time.Time `json:",omitempty"`
     9  }