Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.18 KB

LanguageLevel.md

File metadata and controls

82 lines (45 loc) · 2.18 KB

LanguageLevel

Properties

Name Type Description Notes
Language Pointer to Language [optional]
Level Pointer to Level [optional]

Methods

NewLanguageLevel

func NewLanguageLevel() *LanguageLevel

NewLanguageLevel instantiates a new LanguageLevel 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

NewLanguageLevelWithDefaults

func NewLanguageLevelWithDefaults() *LanguageLevel

NewLanguageLevelWithDefaults instantiates a new LanguageLevel 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

GetLanguage

func (o *LanguageLevel) GetLanguage() Language

GetLanguage returns the Language field if non-nil, zero value otherwise.

GetLanguageOk

func (o *LanguageLevel) GetLanguageOk() (*Language, bool)

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

SetLanguage

func (o *LanguageLevel) SetLanguage(v Language)

SetLanguage sets Language field to given value.

HasLanguage

func (o *LanguageLevel) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

GetLevel

func (o *LanguageLevel) GetLevel() Level

GetLevel returns the Level field if non-nil, zero value otherwise.

GetLevelOk

func (o *LanguageLevel) GetLevelOk() (*Level, bool)

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

SetLevel

func (o *LanguageLevel) SetLevel(v Level)

SetLevel sets Level field to given value.

HasLevel

func (o *LanguageLevel) HasLevel() bool

HasLevel returns a boolean if a field has been set.

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