Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.87 KB

File metadata and controls

108 lines (59 loc) · 2.87 KB

UserSettings

Properties

Name Type Description Notes
Locale Pointer to string [optional]
Region Pointer to string [optional]
OriginalLanguage Pointer to string [optional]

Methods

NewUserSettings

func NewUserSettings() *UserSettings

NewUserSettings instantiates a new UserSettings 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

NewUserSettingsWithDefaults

func NewUserSettingsWithDefaults() *UserSettings

NewUserSettingsWithDefaults instantiates a new UserSettings 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

GetLocale

func (o *UserSettings) GetLocale() string

GetLocale returns the Locale field if non-nil, zero value otherwise.

GetLocaleOk

func (o *UserSettings) GetLocaleOk() (*string, bool)

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

SetLocale

func (o *UserSettings) SetLocale(v string)

SetLocale sets Locale field to given value.

HasLocale

func (o *UserSettings) HasLocale() bool

HasLocale returns a boolean if a field has been set.

GetRegion

func (o *UserSettings) GetRegion() string

GetRegion returns the Region field if non-nil, zero value otherwise.

GetRegionOk

func (o *UserSettings) GetRegionOk() (*string, bool)

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

SetRegion

func (o *UserSettings) SetRegion(v string)

SetRegion sets Region field to given value.

HasRegion

func (o *UserSettings) HasRegion() bool

HasRegion returns a boolean if a field has been set.

GetOriginalLanguage

func (o *UserSettings) GetOriginalLanguage() string

GetOriginalLanguage returns the OriginalLanguage field if non-nil, zero value otherwise.

GetOriginalLanguageOk

func (o *UserSettings) GetOriginalLanguageOk() (*string, bool)

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

SetOriginalLanguage

func (o *UserSettings) SetOriginalLanguage(v string)

SetOriginalLanguage sets OriginalLanguage field to given value.

HasOriginalLanguage

func (o *UserSettings) HasOriginalLanguage() bool

HasOriginalLanguage returns a boolean if a field has been set.

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