volume.go
package platform
// Volume represents attached block storage
type Volume struct {
ID string
Name string
Size int // Gigabytes
Region string
ServerID string // Attached server (empty if detached)
}