blob: b7d51c72b7bcfbde348a3f7c4c9683927f7e5acf [file] [log] [blame]
package volumetenants
// VolumeExt is an extension to the base Volume object
type VolumeExt struct {
// TenantID is the id of the project that owns the volume.
TenantID string `json:"os-vol-tenant-attr:tenant_id"`
}
// UnmarshalJSON to override default
func (r *VolumeExt) UnmarshalJSON(b []byte) error {
return nil
}