22 lines
725 B
Go
22 lines
725 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
|
||
|
|
||
|
// Service struct for Service
|
||
|
type Service struct {
|
||
|
Id string `json:"id,omitempty"`
|
||
|
Resource string `json:"resource,omitempty"`
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Billing ServiceBilling `json:"billing,omitempty"`
|
||
|
Data string `json:"data,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
AvailableServices []string `json:"availableServices,omitempty"`
|
||
|
}
|