github.com/moby/docker@v26.1.3+incompatible/api/types/container/wait_response.go (about)

     1  package container
     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  // WaitResponse ContainerWaitResponse
     7  //
     8  // OK response to ContainerWait operation
     9  // swagger:model WaitResponse
    10  type WaitResponse struct {
    11  
    12  	// error
    13  	Error *WaitExitError `json:"Error,omitempty"`
    14  
    15  	// Exit code of the container
    16  	// Required: true
    17  	StatusCode int64 `json:"StatusCode"`
    18  }