github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/api/types/volume/list_response.go (about)

     1  package volume
     2  
     3  // This file was generated by the swagger tool.
     4  // Editing this file might prove futile when you re-run the swagger generate command
     5  
     6  // ListResponse VolumeListResponse
     7  //
     8  // Volume list response
     9  // swagger:model ListResponse
    10  type ListResponse struct {
    11  
    12  	// List of volumes
    13  	Volumes []*Volume `json:"Volumes"`
    14  
    15  	// Warnings that occurred when fetching the list of volumes.
    16  	//
    17  	Warnings []string `json:"Warnings"`
    18  }