24 lines
781 B
Go
24 lines
781 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
|
|
|
|
// Billing struct for Billing
|
|
type Billing struct {
|
|
Id string `json:"id,omitempty"`
|
|
Period string `json:"period,omitempty"`
|
|
Price float32 `json:"price,omitempty"`
|
|
Quantity float32 `json:"quantity,omitempty"`
|
|
Project string `json:"project,omitempty"`
|
|
OneTime bool `json:"oneTime,omitempty"`
|
|
Service BillingService `json:"service,omitempty"`
|
|
Resource BillingService `json:"resource,omitempty"`
|
|
Charges []BillingCharges `json:"charges,omitempty"`
|
|
}
|