23 lines
668 B
Go
23 lines
668 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
|
|
|
|
// BillingCharges struct for BillingCharges
|
|
type BillingCharges struct {
|
|
Id string `json:"id,omitempty"`
|
|
Value float32 `json:"value,omitempty"`
|
|
Start string `json:"start,omitempty"`
|
|
End string `json:"end,omitempty"`
|
|
Price float32 `json:"price,omitempty"`
|
|
Quantity float32 `json:"quantity,omitempty"`
|
|
PaidFrom string `json:"paidFrom,omitempty"`
|
|
PaidOn string `json:"paidOn,omitempty"`
|
|
}
|