dotcloud/docker

View on GitHub
api/types/container/create_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

// CreateResponse ContainerCreateResponse
//
// OK response to ContainerCreate operation
// swagger:model CreateResponse
type CreateResponse struct {

    // The ID of the created container
    // Required: true
    ID string `json:"Id"`

    // Warnings encountered when creating the container
    // Required: true
    Warnings []string `json:"Warnings"`
}