github.com/zhouyu0/docker-note@v0.0.0-20190722021225-b8d3825084db/api/types/container/container_changes.go (about)

     1  package container
     2  
     3  // ----------------------------------------------------------------------------
     4  // DO NOT EDIT THIS FILE
     5  // This file was generated by `swagger generate operation`
     6  //
     7  // See hack/generate-swagger-api.sh
     8  // ----------------------------------------------------------------------------
     9  
    10  // ContainerChangeResponseItem change item in response to ContainerChanges operation
    11  // swagger:model ContainerChangeResponseItem
    12  type ContainerChangeResponseItem struct {
    13  
    14  	// Kind of change
    15  	// Required: true
    16  	Kind uint8 `json:"Kind"`
    17  
    18  	// Path to file that has changed
    19  	// Required: true
    20  	Path string `json:"Path"`
    21  }