Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.39 KB

UserUpdate.md

File metadata and controls

212 lines (115 loc) · 5.39 KB

UserUpdate

Properties

Name Type Description Notes
FirstName Pointer to string [optional]
LastName string
Email string
RoleIds Pointer to []string [optional]
TenantIds Pointer to []string [optional]
PasswordPolicyName Pointer to string [optional]
Locale Pointer to NullableString [optional]

Methods

NewUserUpdate

func NewUserUpdate(lastName string, email string, ) *UserUpdate

NewUserUpdate instantiates a new UserUpdate 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

NewUserUpdateWithDefaults

func NewUserUpdateWithDefaults() *UserUpdate

NewUserUpdateWithDefaults instantiates a new UserUpdate 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

GetFirstName

func (o *UserUpdate) GetFirstName() string

GetFirstName returns the FirstName field if non-nil, zero value otherwise.

GetFirstNameOk

func (o *UserUpdate) 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 *UserUpdate) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *UserUpdate) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetLastName

func (o *UserUpdate) GetLastName() string

GetLastName returns the LastName field if non-nil, zero value otherwise.

GetLastNameOk

func (o *UserUpdate) 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 *UserUpdate) SetLastName(v string)

SetLastName sets LastName field to given value.

GetEmail

func (o *UserUpdate) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *UserUpdate) 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 *UserUpdate) SetEmail(v string)

SetEmail sets Email field to given value.

GetRoleIds

func (o *UserUpdate) GetRoleIds() []string

GetRoleIds returns the RoleIds field if non-nil, zero value otherwise.

GetRoleIdsOk

func (o *UserUpdate) GetRoleIdsOk() (*[]string, bool)

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

SetRoleIds

func (o *UserUpdate) SetRoleIds(v []string)

SetRoleIds sets RoleIds field to given value.

HasRoleIds

func (o *UserUpdate) HasRoleIds() bool

HasRoleIds returns a boolean if a field has been set.

GetTenantIds

func (o *UserUpdate) GetTenantIds() []string

GetTenantIds returns the TenantIds field if non-nil, zero value otherwise.

GetTenantIdsOk

func (o *UserUpdate) GetTenantIdsOk() (*[]string, bool)

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

SetTenantIds

func (o *UserUpdate) SetTenantIds(v []string)

SetTenantIds sets TenantIds field to given value.

HasTenantIds

func (o *UserUpdate) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

GetPasswordPolicyName

func (o *UserUpdate) GetPasswordPolicyName() string

GetPasswordPolicyName returns the PasswordPolicyName field if non-nil, zero value otherwise.

GetPasswordPolicyNameOk

func (o *UserUpdate) GetPasswordPolicyNameOk() (*string, bool)

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

SetPasswordPolicyName

func (o *UserUpdate) SetPasswordPolicyName(v string)

SetPasswordPolicyName sets PasswordPolicyName field to given value.

HasPasswordPolicyName

func (o *UserUpdate) HasPasswordPolicyName() bool

HasPasswordPolicyName returns a boolean if a field has been set.

GetLocale

func (o *UserUpdate) GetLocale() string

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

GetLocaleOk

func (o *UserUpdate) 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 *UserUpdate) SetLocale(v string)

SetLocale sets Locale field to given value.

HasLocale

func (o *UserUpdate) HasLocale() bool

HasLocale returns a boolean if a field has been set.

SetLocaleNil

func (o *UserUpdate) SetLocaleNil(b bool)

SetLocaleNil sets the value for Locale to be an explicit nil

UnsetLocale

func (o *UserUpdate) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

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