19 lines
476 B
Go
19 lines
476 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 Vmhost struct {
|
||
|
Id string `json:"_id,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
State string `json:"state,omitempty"`
|
||
|
Created bool `json:"created,omitempty"`
|
||
|
AccessRights []string `json:"accessRights,omitempty"`
|
||
|
}
|