github.com/sams1990/dockerrepo@v17.12.1-ce-rc2+incompatible/api/types/container/container_wait.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  // ContainerWaitOKBodyError container waiting error, if any
    11  // swagger:model ContainerWaitOKBodyError
    12  type ContainerWaitOKBodyError struct {
    13  
    14  	// Details of an error
    15  	Message string `json:"Message,omitempty"`
    16  }
    17  
    18  // ContainerWaitOKBody container wait o k body
    19  // swagger:model ContainerWaitOKBody
    20  type ContainerWaitOKBody struct {
    21  
    22  	// error
    23  	// Required: true
    24  	Error *ContainerWaitOKBodyError `json:"Error"`
    25  
    26  	// Exit code of the container
    27  	// Required: true
    28  	StatusCode int64 `json:"StatusCode"`
    29  }