Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 2.44 KB

Plan.md

File metadata and controls

102 lines (57 loc) · 2.44 KB

Plan

Properties

Name Type Description Notes
PlanId Pointer to NullableString Plan ID [optional]
Name Pointer to NullableString Plan Name [optional]

Methods

NewPlan

func NewPlan() *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

GetPlanId

func (o *Plan) GetPlanId() string

GetPlanId returns the PlanId field if non-nil, zero value otherwise.

GetPlanIdOk

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

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

SetPlanId

func (o *Plan) SetPlanId(v string)

SetPlanId sets PlanId field to given value.

HasPlanId

func (o *Plan) HasPlanId() bool

HasPlanId returns a boolean if a field has been set.

SetPlanIdNil

func (o *Plan) SetPlanIdNil(b bool)

SetPlanIdNil sets the value for PlanId to be an explicit nil

UnsetPlanId

func (o *Plan) UnsetPlanId()

UnsetPlanId ensures that no value is present for PlanId, not even an explicit nil

GetName

func (o *Plan) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *Plan) 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 *Plan) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *Plan) HasName() bool

HasName returns a boolean if a field has been set.

SetNameNil

func (o *Plan) SetNameNil(b bool)

SetNameNil sets the value for Name to be an explicit nil

UnsetName

func (o *Plan) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

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