21 lines
575 B
Go
21 lines
575 B
Go
/*
|
|
* HyperOne API
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 0.0.2
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package openapi
|
|
|
|
// HddDisk struct for HddDisk
|
|
type HddDisk struct {
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
Size float32 `json:"size,omitempty"`
|
|
Processing bool `json:"processing,omitempty"`
|
|
Persistent bool `json:"persistent,omitempty"`
|
|
}
|