Name | Type | Description | Notes |
---|---|---|---|
string | |||
FirstName | Pointer to string | [optional] | |
IsExternal | Pointer to bool | [optional] | |
LastName | Pointer to string | [optional] | |
Role | UserRole |
func NewUserResponse(email string, role UserRole, ) *UserResponse
NewUserResponse instantiates a new UserResponse 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 NewUserResponseWithDefaults() *UserResponse
NewUserResponseWithDefaults instantiates a new UserResponse 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 *UserResponse) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *UserResponse) 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 *UserResponse) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *UserResponse) GetFirstName() string
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
func (o *UserResponse) 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 *UserResponse) SetFirstName(v string)
SetFirstName sets FirstName field to given value.
func (o *UserResponse) HasFirstName() bool
HasFirstName returns a boolean if a field has been set.
func (o *UserResponse) GetIsExternal() bool
GetIsExternal returns the IsExternal field if non-nil, zero value otherwise.
func (o *UserResponse) 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 *UserResponse) SetIsExternal(v bool)
SetIsExternal sets IsExternal field to given value.
func (o *UserResponse) HasIsExternal() bool
HasIsExternal returns a boolean if a field has been set.
func (o *UserResponse) GetLastName() string
GetLastName returns the LastName field if non-nil, zero value otherwise.
func (o *UserResponse) 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 *UserResponse) SetLastName(v string)
SetLastName sets LastName field to given value.
func (o *UserResponse) HasLastName() bool
HasLastName returns a boolean if a field has been set.
func (o *UserResponse) GetRole() UserRole
GetRole returns the Role field if non-nil, zero value otherwise.
func (o *UserResponse) GetRoleOk() (*UserRole, bool)
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserResponse) SetRole(v UserRole)
SetRole sets Role field to given value.