Name | Type | Description | Notes |
---|---|---|---|
UserId | string | The ID of the user. | |
string | The email of the user. | ||
FullName | string | The full name of the user. | |
FirstName | string | The first name of the user. | |
LastName | string | The last name of the user. | |
Position | string | The user's position. |
func NewUser(userId string, email string, fullName string, firstName string, lastName string, position string, ) *User
NewUser instantiates a new User 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 NewUserWithDefaults() *User
NewUserWithDefaults instantiates a new User 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 *User) GetUserId() string
GetUserId returns the UserId field if non-nil, zero value otherwise.
func (o *User) 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 *User) SetUserId(v string)
SetUserId sets UserId field to given value.
func (o *User) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *User) 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 *User) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *User) GetFullName() string
GetFullName returns the FullName field if non-nil, zero value otherwise.
func (o *User) 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 *User) SetFullName(v string)
SetFullName sets FullName field to given value.
func (o *User) GetFirstName() string
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
func (o *User) 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 *User) SetFirstName(v string)
SetFirstName sets FirstName field to given value.
func (o *User) GetLastName() string
GetLastName returns the LastName field if non-nil, zero value otherwise.
func (o *User) 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 *User) SetLastName(v string)
SetLastName sets LastName field to given value.
func (o *User) GetPosition() string
GetPosition returns the Position field if non-nil, zero value otherwise.
func (o *User) GetPositionOk() (*string, bool)
GetPositionOk returns a tuple with the Position field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *User) SetPosition(v string)
SetPosition sets Position field to given value.