Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.82 KB

File metadata and controls

72 lines (39 loc) · 1.82 KB

Plan

Properties

Name Type Description Notes
LicenseType string
Cores int32 Number of CPU cores

Methods

NewPlan

func NewPlan(licenseType string, cores int32, ) *Plan

NewPlan instantiates a new Plan 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

NewPlanWithDefaults

func NewPlanWithDefaults() *Plan

NewPlanWithDefaults instantiates a new Plan 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

GetLicenseType

func (o *Plan) GetLicenseType() string

GetLicenseType returns the LicenseType field if non-nil, zero value otherwise.

GetLicenseTypeOk

func (o *Plan) GetLicenseTypeOk() (*string, bool)

GetLicenseTypeOk returns a tuple with the LicenseType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLicenseType

func (o *Plan) SetLicenseType(v string)

SetLicenseType sets LicenseType field to given value.

GetCores

func (o *Plan) GetCores() int32

GetCores returns the Cores field if non-nil, zero value otherwise.

GetCoresOk

func (o *Plan) GetCoresOk() (*int32, bool)

GetCoresOk returns a tuple with the Cores field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCores

func (o *Plan) SetCores(v int32)

SetCores sets Cores field to given value.

[Back to Model list] [Back to API list] [Back to README]