20 lines
511 B
Go
20 lines
511 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
|
|
|
|
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"`
|
|
}
|