-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Aug 8, 2024
1 parent
979d199
commit ccd0769
Showing
34 changed files
with
1,755 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# BillingBandwidth | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Total** | Pointer to **float32** | | [optional] | ||
**Tiers** | Pointer to [**[]BillingBandwidthTiers**](BillingBandwidthTiers.md) | | [optional] | ||
|
||
## Methods | ||
|
||
### NewBillingBandwidth | ||
|
||
`func NewBillingBandwidth() *BillingBandwidth` | ||
|
||
NewBillingBandwidth instantiates a new BillingBandwidth object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewBillingBandwidthWithDefaults | ||
|
||
`func NewBillingBandwidthWithDefaults() *BillingBandwidth` | ||
|
||
NewBillingBandwidthWithDefaults instantiates a new BillingBandwidth object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetTotal | ||
|
||
`func (o *BillingBandwidth) GetTotal() float32` | ||
|
||
GetTotal returns the Total field if non-nil, zero value otherwise. | ||
|
||
### GetTotalOk | ||
|
||
`func (o *BillingBandwidth) GetTotalOk() (*float32, bool)` | ||
|
||
GetTotalOk returns a tuple with the Total field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetTotal | ||
|
||
`func (o *BillingBandwidth) SetTotal(v float32)` | ||
|
||
SetTotal sets Total field to given value. | ||
|
||
### HasTotal | ||
|
||
`func (o *BillingBandwidth) HasTotal() bool` | ||
|
||
HasTotal returns a boolean if a field has been set. | ||
|
||
### GetTiers | ||
|
||
`func (o *BillingBandwidth) GetTiers() []BillingBandwidthTiers` | ||
|
||
GetTiers returns the Tiers field if non-nil, zero value otherwise. | ||
|
||
### GetTiersOk | ||
|
||
`func (o *BillingBandwidth) GetTiersOk() (*[]BillingBandwidthTiers, bool)` | ||
|
||
GetTiersOk returns a tuple with the Tiers field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetTiers | ||
|
||
`func (o *BillingBandwidth) SetTiers(v []BillingBandwidthTiers)` | ||
|
||
SetTiers sets Tiers field to given value. | ||
|
||
### HasTiers | ||
|
||
`func (o *BillingBandwidth) HasTiers() bool` | ||
|
||
HasTiers returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
# BillingBandwidthTiers | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Name** | Pointer to **string** | | [optional] | ||
**Units** | Pointer to **float32** | | [optional] | ||
**Price** | Pointer to **float32** | | [optional] | ||
**DiscountedPrice** | Pointer to **float32** | | [optional] | ||
**Total** | Pointer to **float32** | | [optional] | ||
|
||
## Methods | ||
|
||
### NewBillingBandwidthTiers | ||
|
||
`func NewBillingBandwidthTiers() *BillingBandwidthTiers` | ||
|
||
NewBillingBandwidthTiers instantiates a new BillingBandwidthTiers object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewBillingBandwidthTiersWithDefaults | ||
|
||
`func NewBillingBandwidthTiersWithDefaults() *BillingBandwidthTiers` | ||
|
||
NewBillingBandwidthTiersWithDefaults instantiates a new BillingBandwidthTiers object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetName | ||
|
||
`func (o *BillingBandwidthTiers) GetName() string` | ||
|
||
GetName returns the Name field if non-nil, zero value otherwise. | ||
|
||
### GetNameOk | ||
|
||
`func (o *BillingBandwidthTiers) GetNameOk() (*string, bool)` | ||
|
||
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetName | ||
|
||
`func (o *BillingBandwidthTiers) SetName(v string)` | ||
|
||
SetName sets Name field to given value. | ||
|
||
### HasName | ||
|
||
`func (o *BillingBandwidthTiers) HasName() bool` | ||
|
||
HasName returns a boolean if a field has been set. | ||
|
||
### GetUnits | ||
|
||
`func (o *BillingBandwidthTiers) GetUnits() float32` | ||
|
||
GetUnits returns the Units field if non-nil, zero value otherwise. | ||
|
||
### GetUnitsOk | ||
|
||
`func (o *BillingBandwidthTiers) GetUnitsOk() (*float32, bool)` | ||
|
||
GetUnitsOk returns a tuple with the Units field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetUnits | ||
|
||
`func (o *BillingBandwidthTiers) SetUnits(v float32)` | ||
|
||
SetUnits sets Units field to given value. | ||
|
||
### HasUnits | ||
|
||
`func (o *BillingBandwidthTiers) HasUnits() bool` | ||
|
||
HasUnits returns a boolean if a field has been set. | ||
|
||
### GetPrice | ||
|
||
`func (o *BillingBandwidthTiers) GetPrice() float32` | ||
|
||
GetPrice returns the Price field if non-nil, zero value otherwise. | ||
|
||
### GetPriceOk | ||
|
||
`func (o *BillingBandwidthTiers) GetPriceOk() (*float32, bool)` | ||
|
||
GetPriceOk returns a tuple with the Price field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetPrice | ||
|
||
`func (o *BillingBandwidthTiers) SetPrice(v float32)` | ||
|
||
SetPrice sets Price field to given value. | ||
|
||
### HasPrice | ||
|
||
`func (o *BillingBandwidthTiers) HasPrice() bool` | ||
|
||
HasPrice returns a boolean if a field has been set. | ||
|
||
### GetDiscountedPrice | ||
|
||
`func (o *BillingBandwidthTiers) GetDiscountedPrice() float32` | ||
|
||
GetDiscountedPrice returns the DiscountedPrice field if non-nil, zero value otherwise. | ||
|
||
### GetDiscountedPriceOk | ||
|
||
`func (o *BillingBandwidthTiers) GetDiscountedPriceOk() (*float32, bool)` | ||
|
||
GetDiscountedPriceOk returns a tuple with the DiscountedPrice field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetDiscountedPrice | ||
|
||
`func (o *BillingBandwidthTiers) SetDiscountedPrice(v float32)` | ||
|
||
SetDiscountedPrice sets DiscountedPrice field to given value. | ||
|
||
### HasDiscountedPrice | ||
|
||
`func (o *BillingBandwidthTiers) HasDiscountedPrice() bool` | ||
|
||
HasDiscountedPrice returns a boolean if a field has been set. | ||
|
||
### GetTotal | ||
|
||
`func (o *BillingBandwidthTiers) GetTotal() float32` | ||
|
||
GetTotal returns the Total field if non-nil, zero value otherwise. | ||
|
||
### GetTotalOk | ||
|
||
`func (o *BillingBandwidthTiers) GetTotalOk() (*float32, bool)` | ||
|
||
GetTotalOk returns a tuple with the Total field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetTotal | ||
|
||
`func (o *BillingBandwidthTiers) SetTotal(v float32)` | ||
|
||
SetTotal sets Total field to given value. | ||
|
||
### HasTotal | ||
|
||
`func (o *BillingBandwidthTiers) HasTotal() bool` | ||
|
||
HasTotal returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
Oops, something went wrong.