dotcloud/docker

View on GitHub
api/types/swarm/service_create_response.go

Summary

Maintainability
A
0 mins
Test Coverage
package swarm

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

// ServiceCreateResponse contains the information returned to a client on the
// creation of a new service.
//
// swagger:model ServiceCreateResponse
type ServiceCreateResponse struct {

    // The ID of the created service.
    ID string `json:"ID,omitempty"`

    // Optional warning message.
    //
    // FIXME(thaJeztah): this should have "omitempty" in the generated type.
    //
    Warnings []string `json:"Warnings"`
}