Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 3.82 KB

File metadata and controls

102 lines (57 loc) · 3.82 KB

Language

Properties

Name Type Description Notes
Selector Pointer to NullableString Whether the language selector in the web form header will be displayed.<br/><strong>NOTE:</strong> in case <code>functionality.header</code> is marked as <code>HIDDEN</code>, then this property will be ignored.<br/><strong>NOTE:</strong> If no value is provided, then the following value will be applied by default when web form is opened: <code>RENDER</code>. [optional]
Locked Pointer to NullableString The language in which the web form will be shown. The language must be given in the <a target='_blank' href='https://www.iso.org/iso-639-language-codes.html&#39;&gt;ISO-639&lt;/a> 2 letter code format.<br/>&bull; This must be initialized if either the <code>functionality.header</code> or <code>functionality.language.selector</code> are <code>HIDDEN</code>;<br/>&bull; This must be null if both <code>functionality.header</code> and <code>functionality.language.selector</code> are set to <code>RENDER</code>.<br/><strong>NOTE:</strong> If no value is provided, then the following value will be applied by default when web form is opened: <code>null</code>. [optional]

Methods

NewLanguage

func NewLanguage() *Language

NewLanguage instantiates a new Language 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

NewLanguageWithDefaults

func NewLanguageWithDefaults() *Language

NewLanguageWithDefaults instantiates a new Language 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

GetSelector

func (o *Language) GetSelector() string

GetSelector returns the Selector field if non-nil, zero value otherwise.

GetSelectorOk

func (o *Language) GetSelectorOk() (*string, bool)

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

SetSelector

func (o *Language) SetSelector(v string)

SetSelector sets Selector field to given value.

HasSelector

func (o *Language) HasSelector() bool

HasSelector returns a boolean if a field has been set.

SetSelectorNil

func (o *Language) SetSelectorNil(b bool)

SetSelectorNil sets the value for Selector to be an explicit nil

UnsetSelector

func (o *Language) UnsetSelector()

UnsetSelector ensures that no value is present for Selector, not even an explicit nil

GetLocked

func (o *Language) GetLocked() string

GetLocked returns the Locked field if non-nil, zero value otherwise.

GetLockedOk

func (o *Language) GetLockedOk() (*string, bool)

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

SetLocked

func (o *Language) SetLocked(v string)

SetLocked sets Locked field to given value.

HasLocked

func (o *Language) HasLocked() bool

HasLocked returns a boolean if a field has been set.

SetLockedNil

func (o *Language) SetLockedNil(b bool)

SetLockedNil sets the value for Locked to be an explicit nil

UnsetLocked

func (o *Language) UnsetLocked()

UnsetLocked ensures that no value is present for Locked, not even an explicit nil

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