UserPropertiesPut
Properties
Name | Type | Description | Notes |
---|---|---|---|
Active | Pointer to bool | Indicates if the user is active. | [optional] |
Administrator | Pointer to bool | Indicates if the user has admin rights. | [optional] |
Pointer to string | The email address of the user. | [optional] | |
Firstname | Pointer to string | The first name of the user. | [optional] |
ForceSecAuth | Pointer to bool | Indicates if secure authentication should be forced on the user. | [optional] |
Lastname | Pointer to string | The last name of the user. | [optional] |
Password | Pointer to string | password of the user | [optional] |
SecAuthActive | Pointer to bool | Indicates if secure authentication is active for the user. | [optional] |
Methods
NewUserPropertiesPut
func NewUserPropertiesPut() *UserPropertiesPut
NewUserPropertiesPut instantiates a new UserPropertiesPut 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
NewUserPropertiesPutWithDefaults
func NewUserPropertiesPutWithDefaults() *UserPropertiesPut
NewUserPropertiesPutWithDefaults instantiates a new UserPropertiesPut 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
GetActive
func (o *UserPropertiesPut) GetActive() bool
GetActive returns the Active field if non-nil, zero value otherwise.
GetActiveOk
func (o *UserPropertiesPut) GetActiveOk() (*bool, bool)
GetActiveOk returns a tuple with the Active field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetActive
func (o *UserPropertiesPut) SetActive(v bool)
SetActive sets Active field to given value.
HasActive
func (o *UserPropertiesPut) HasActive() bool
HasActive returns a boolean if a field has been set.
GetAdministrator
func (o *UserPropertiesPut) GetAdministrator() bool
GetAdministrator returns the Administrator field if non-nil, zero value otherwise.
GetAdministratorOk
func (o *UserPropertiesPut) GetAdministratorOk() (*bool, bool)
GetAdministratorOk returns a tuple with the Administrator field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetAdministrator
func (o *UserPropertiesPut) SetAdministrator(v bool)
SetAdministrator sets Administrator field to given value.
HasAdministrator
func (o *UserPropertiesPut) HasAdministrator() bool
HasAdministrator returns a boolean if a field has been set.
GetEmail
func (o *UserPropertiesPut) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
GetEmailOk
func (o *UserPropertiesPut) GetEmailOk() (*string, bool)
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetEmail
func (o *UserPropertiesPut) SetEmail(v string)
SetEmail sets Email field to given value.
HasEmail
func (o *UserPropertiesPut) HasEmail() bool
HasEmail returns a boolean if a field has been set.
GetFirstname
func (o *UserPropertiesPut) GetFirstname() string
GetFirstname returns the Firstname field if non-nil, zero value otherwise.
GetFirstnameOk
func (o *UserPropertiesPut) GetFirstnameOk() (*string, bool)
GetFirstnameOk returns a tuple with the Firstname field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetFirstname
func (o *UserPropertiesPut) SetFirstname(v string)
SetFirstname sets Firstname field to given value.
HasFirstname
func (o *UserPropertiesPut) HasFirstname() bool
HasFirstname returns a boolean if a field has been set.
GetForceSecAuth
func (o *UserPropertiesPut) GetForceSecAuth() bool
GetForceSecAuth returns the ForceSecAuth field if non-nil, zero value otherwise.
GetForceSecAuthOk
func (o *UserPropertiesPut) GetForceSecAuthOk() (*bool, bool)
GetForceSecAuthOk returns a tuple with the ForceSecAuth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetForceSecAuth
func (o *UserPropertiesPut) SetForceSecAuth(v bool)
SetForceSecAuth sets ForceSecAuth field to given value.
HasForceSecAuth
func (o *UserPropertiesPut) HasForceSecAuth() bool
HasForceSecAuth returns a boolean if a field has been set.
GetLastname
func (o *UserPropertiesPut) GetLastname() string
GetLastname returns the Lastname field if non-nil, zero value otherwise.
GetLastnameOk
func (o *UserPropertiesPut) GetLastnameOk() (*string, bool)
GetLastnameOk returns a tuple with the Lastname field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetLastname
func (o *UserPropertiesPut) SetLastname(v string)
SetLastname sets Lastname field to given value.
HasLastname
func (o *UserPropertiesPut) HasLastname() bool
HasLastname returns a boolean if a field has been set.
GetPassword
func (o *UserPropertiesPut) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
GetPasswordOk
func (o *UserPropertiesPut) GetPasswordOk() (*string, bool)
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetPassword
func (o *UserPropertiesPut) SetPassword(v string)
SetPassword sets Password field to given value.
HasPassword
func (o *UserPropertiesPut) HasPassword() bool
HasPassword returns a boolean if a field has been set.
GetSecAuthActive
func (o *UserPropertiesPut) GetSecAuthActive() bool
GetSecAuthActive returns the SecAuthActive field if non-nil, zero value otherwise.
GetSecAuthActiveOk
func (o *UserPropertiesPut) GetSecAuthActiveOk() (*bool, bool)
GetSecAuthActiveOk returns a tuple with the SecAuthActive field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetSecAuthActive
func (o *UserPropertiesPut) SetSecAuthActive(v bool)
SetSecAuthActive sets SecAuthActive field to given value.
HasSecAuthActive
func (o *UserPropertiesPut) HasSecAuthActive() bool
HasSecAuthActive returns a boolean if a field has been set.
Last updated