Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.76 KB

SkillLink.md

File metadata and controls

108 lines (59 loc) · 2.76 KB

SkillLink

Properties

Name Type Description Notes
Skill Pointer to Skill [optional]
KindGiver Pointer to bool [optional] [default to false]
ChildCount Pointer to int32 [optional] [default to 0]

Methods

NewSkillLink

func NewSkillLink() *SkillLink

NewSkillLink instantiates a new SkillLink 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

NewSkillLinkWithDefaults

func NewSkillLinkWithDefaults() *SkillLink

NewSkillLinkWithDefaults instantiates a new SkillLink 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

GetSkill

func (o *SkillLink) GetSkill() Skill

GetSkill returns the Skill field if non-nil, zero value otherwise.

GetSkillOk

func (o *SkillLink) GetSkillOk() (*Skill, bool)

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

SetSkill

func (o *SkillLink) SetSkill(v Skill)

SetSkill sets Skill field to given value.

HasSkill

func (o *SkillLink) HasSkill() bool

HasSkill returns a boolean if a field has been set.

GetKindGiver

func (o *SkillLink) GetKindGiver() bool

GetKindGiver returns the KindGiver field if non-nil, zero value otherwise.

GetKindGiverOk

func (o *SkillLink) GetKindGiverOk() (*bool, bool)

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

SetKindGiver

func (o *SkillLink) SetKindGiver(v bool)

SetKindGiver sets KindGiver field to given value.

HasKindGiver

func (o *SkillLink) HasKindGiver() bool

HasKindGiver returns a boolean if a field has been set.

GetChildCount

func (o *SkillLink) GetChildCount() int32

GetChildCount returns the ChildCount field if non-nil, zero value otherwise.

GetChildCountOk

func (o *SkillLink) GetChildCountOk() (*int32, bool)

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

SetChildCount

func (o *SkillLink) SetChildCount(v int32)

SetChildCount sets ChildCount field to given value.

HasChildCount

func (o *SkillLink) HasChildCount() bool

HasChildCount returns a boolean if a field has been set.

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