mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
19 lines
665 B
Go
19 lines
665 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
|
|
|
|
// ServiceBilling struct for ServiceBilling
|
|
type ServiceBilling struct {
|
|
Price ServiceBillingPrice `json:"price,omitempty"`
|
|
Period string `json:"period,omitempty"`
|
|
Quantity float32 `json:"quantity,omitempty"`
|
|
OneTime bool `json:"oneTime,omitempty"`
|
|
Reservations ServiceBillingReservations `json:"reservations,omitempty"`
|
|
}
|