Name | Type | Description | Notes |
---|---|---|---|
HourlyPrice | string | ||
MonthlyPrice | string |
func NewPrice(hourlyPrice string, monthlyPrice string, ) *Price
NewPrice instantiates a new Price 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
func NewPriceWithDefaults() *Price
NewPriceWithDefaults instantiates a new Price 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
func (o *Price) GetHourlyPrice() string
GetHourlyPrice returns the HourlyPrice field if non-nil, zero value otherwise.
func (o *Price) GetHourlyPriceOk() (*string, bool)
GetHourlyPriceOk returns a tuple with the HourlyPrice field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Price) SetHourlyPrice(v string)
SetHourlyPrice sets HourlyPrice field to given value.
func (o *Price) GetMonthlyPrice() string
GetMonthlyPrice returns the MonthlyPrice field if non-nil, zero value otherwise.
func (o *Price) GetMonthlyPriceOk() (*string, bool)
GetMonthlyPriceOk returns a tuple with the MonthlyPrice field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Price) SetMonthlyPrice(v string)
SetMonthlyPrice sets MonthlyPrice field to given value.