github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/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  }