dotcloud/docker

View on GitHub
api/types/container/wait_response.go

Summary

Maintainability
A
0 mins
Test Coverage
package container

// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command

// WaitResponse ContainerWaitResponse
//
// OK response to ContainerWait operation
// swagger:model WaitResponse
type WaitResponse struct {

    // error
    Error *WaitExitError `json:"Error,omitempty"`

    // Exit code of the container
    // Required: true
    StatusCode int64 `json:"StatusCode"`
}