Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 3.83 KB

User.md

File metadata and controls

156 lines (83 loc) · 3.83 KB

User

Properties

Name Type Description Notes
UserId string The ID of the user.
Email 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.

Methods

NewUser

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

NewUserWithDefaults

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

GetUserId

func (o *User) GetUserId() string

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

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.

SetUserId

func (o *User) SetUserId(v string)

SetUserId sets UserId field to given value.

GetEmail

func (o *User) GetEmail() string

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

GetEmailOk

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.

SetEmail

func (o *User) SetEmail(v string)

SetEmail sets Email field to given value.

GetFullName

func (o *User) GetFullName() string

GetFullName returns the FullName field if non-nil, zero value otherwise.

GetFullNameOk

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.

SetFullName

func (o *User) SetFullName(v string)

SetFullName sets FullName field to given value.

GetFirstName

func (o *User) GetFirstName() string

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

GetFirstNameOk

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.

SetFirstName

func (o *User) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

GetLastName

func (o *User) GetLastName() string

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

GetLastNameOk

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.

SetLastName

func (o *User) SetLastName(v string)

SetLastName sets LastName field to given value.

GetPosition

func (o *User) GetPosition() string

GetPosition returns the Position field if non-nil, zero value otherwise.

GetPositionOk

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.

SetPosition

func (o *User) SetPosition(v string)

SetPosition sets Position field to given value.

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