| Name | Type | Description | Notes |
|---|---|---|---|
| UserId | NullableString | Identifier of the Member. | |
| FullName | NullableString | Name of the Member. | |
| NullableString | Email of the Member. | ||
| TwoFactorEnabled | bool | Determines whether 2FA is enabled for the Member. |
func NewUserModel(userId NullableString, fullName NullableString, email NullableString, twoFactorEnabled bool, ) *UserModel
NewUserModel instantiates a new UserModel 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
func NewUserModelWithDefaults() *UserModel
NewUserModelWithDefaults instantiates a new UserModel 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
func (o *UserModel) GetUserId() string
GetUserId returns the UserId field if non-nil, zero value otherwise.
func (o *UserModel) GetUserIdOk() (*string, bool)
GetUserIdOk returns a tuple with the UserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserModel) SetUserId(v string)
SetUserId sets UserId field to given value.
func (o *UserModel) SetUserIdNil(b bool)
SetUserIdNil sets the value for UserId to be an explicit nil
func (o *UserModel) UnsetUserId()
UnsetUserId ensures that no value is present for UserId, not even an explicit nil
func (o *UserModel) GetFullName() string
GetFullName returns the FullName field if non-nil, zero value otherwise.
func (o *UserModel) GetFullNameOk() (*string, bool)
GetFullNameOk returns a tuple with the FullName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserModel) SetFullName(v string)
SetFullName sets FullName field to given value.
func (o *UserModel) SetFullNameNil(b bool)
SetFullNameNil sets the value for FullName to be an explicit nil
func (o *UserModel) UnsetFullName()
UnsetFullName ensures that no value is present for FullName, not even an explicit nil
func (o *UserModel) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *UserModel) 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.
func (o *UserModel) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *UserModel) SetEmailNil(b bool)
SetEmailNil sets the value for Email to be an explicit nil
func (o *UserModel) UnsetEmail()
UnsetEmail ensures that no value is present for Email, not even an explicit nil
func (o *UserModel) GetTwoFactorEnabled() bool
GetTwoFactorEnabled returns the TwoFactorEnabled field if non-nil, zero value otherwise.
func (o *UserModel) GetTwoFactorEnabledOk() (*bool, bool)
GetTwoFactorEnabledOk returns a tuple with the TwoFactorEnabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserModel) SetTwoFactorEnabled(v bool)
SetTwoFactorEnabled sets TwoFactorEnabled field to given value.