dotcloud/docker

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

// FilesystemChange Change in the container's filesystem.
//
// swagger:model FilesystemChange
type FilesystemChange struct {

    // kind
    // Required: true
    Kind ChangeType `json:"Kind"`

    // Path to file or directory that has changed.
    //
    // Required: true
    Path string `json:"Path"`
}