Name | Type | Description | Notes |
---|---|---|---|
string | |||
FirstName | Pointer to string | [optional] | |
IsExternal | Pointer to bool | Is the user created via ldap flow. | [optional] |
LastName | Pointer to string | [optional] | |
Password | string |
func NewUserRequest(email string, password string, ) *UserRequest
NewUserRequest instantiates a new UserRequest 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 NewUserRequestWithDefaults() *UserRequest
NewUserRequestWithDefaults instantiates a new UserRequest 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 *UserRequest) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *UserRequest) 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 *UserRequest) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *UserRequest) GetFirstName() string
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
func (o *UserRequest) 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.
func (o *UserRequest) SetFirstName(v string)
SetFirstName sets FirstName field to given value.
func (o *UserRequest) HasFirstName() bool
HasFirstName returns a boolean if a field has been set.
func (o *UserRequest) GetIsExternal() bool
GetIsExternal returns the IsExternal field if non-nil, zero value otherwise.
func (o *UserRequest) GetIsExternalOk() (*bool, bool)
GetIsExternalOk returns a tuple with the IsExternal field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserRequest) SetIsExternal(v bool)
SetIsExternal sets IsExternal field to given value.
func (o *UserRequest) HasIsExternal() bool
HasIsExternal returns a boolean if a field has been set.
func (o *UserRequest) GetLastName() string
GetLastName returns the LastName field if non-nil, zero value otherwise.
func (o *UserRequest) 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.
func (o *UserRequest) SetLastName(v string)
SetLastName sets LastName field to given value.
func (o *UserRequest) HasLastName() bool
HasLastName returns a boolean if a field has been set.
func (o *UserRequest) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
func (o *UserRequest) 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.
func (o *UserRequest) SetPassword(v string)
SetPassword sets Password field to given value.