Skip to content

Latest commit

 

History

History
207 lines (112 loc) · 5.14 KB

Skill.md

File metadata and controls

207 lines (112 loc) · 5.14 KB

Skill

Properties

Name Type Description Notes
Suggestion bool [default to false]
Linkable Pointer to bool The entity can be linked [optional] [default to false]
Synonyms Pointer to []string [optional]
Description Pointer to string [optional]
Invest Pointer to bool [optional] [default to false]
KindGiver Pointer to bool [optional] [default to false]
GroupPriority Pointer to int32 [optional]

Methods

NewSkill

func NewSkill(suggestion bool, ) *Skill

NewSkill instantiates a new Skill 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

NewSkillWithDefaults

func NewSkillWithDefaults() *Skill

NewSkillWithDefaults instantiates a new Skill 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

GetSuggestion

func (o *Skill) GetSuggestion() bool

GetSuggestion returns the Suggestion field if non-nil, zero value otherwise.

GetSuggestionOk

func (o *Skill) GetSuggestionOk() (*bool, bool)

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

SetSuggestion

func (o *Skill) SetSuggestion(v bool)

SetSuggestion sets Suggestion field to given value.

GetLinkable

func (o *Skill) GetLinkable() bool

GetLinkable returns the Linkable field if non-nil, zero value otherwise.

GetLinkableOk

func (o *Skill) GetLinkableOk() (*bool, bool)

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

SetLinkable

func (o *Skill) SetLinkable(v bool)

SetLinkable sets Linkable field to given value.

HasLinkable

func (o *Skill) HasLinkable() bool

HasLinkable returns a boolean if a field has been set.

GetSynonyms

func (o *Skill) GetSynonyms() []string

GetSynonyms returns the Synonyms field if non-nil, zero value otherwise.

GetSynonymsOk

func (o *Skill) GetSynonymsOk() (*[]string, bool)

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

SetSynonyms

func (o *Skill) SetSynonyms(v []string)

SetSynonyms sets Synonyms field to given value.

HasSynonyms

func (o *Skill) HasSynonyms() bool

HasSynonyms returns a boolean if a field has been set.

GetDescription

func (o *Skill) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *Skill) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *Skill) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Skill) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetInvest

func (o *Skill) GetInvest() bool

GetInvest returns the Invest field if non-nil, zero value otherwise.

GetInvestOk

func (o *Skill) GetInvestOk() (*bool, bool)

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

SetInvest

func (o *Skill) SetInvest(v bool)

SetInvest sets Invest field to given value.

HasInvest

func (o *Skill) HasInvest() bool

HasInvest returns a boolean if a field has been set.

GetKindGiver

func (o *Skill) GetKindGiver() bool

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

GetKindGiverOk

func (o *Skill) 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 *Skill) SetKindGiver(v bool)

SetKindGiver sets KindGiver field to given value.

HasKindGiver

func (o *Skill) HasKindGiver() bool

HasKindGiver returns a boolean if a field has been set.

GetGroupPriority

func (o *Skill) GetGroupPriority() int32

GetGroupPriority returns the GroupPriority field if non-nil, zero value otherwise.

GetGroupPriorityOk

func (o *Skill) GetGroupPriorityOk() (*int32, bool)

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

SetGroupPriority

func (o *Skill) SetGroupPriority(v int32)

SetGroupPriority sets GroupPriority field to given value.

HasGroupPriority

func (o *Skill) HasGroupPriority() bool

HasGroupPriority returns a boolean if a field has been set.

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