Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.64 KB

ModelUpdateUserRequest.md

File metadata and controls

134 lines (73 loc) · 3.64 KB

ModelUpdateUserRequest

Properties

Name Type Description Notes
FirstName Pointer to string [optional]
IsActive Pointer to bool [optional]
LastName Pointer to string [optional]
Role Pointer to string [optional]

Methods

NewModelUpdateUserRequest

func NewModelUpdateUserRequest() *ModelUpdateUserRequest

NewModelUpdateUserRequest instantiates a new ModelUpdateUserRequest 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

NewModelUpdateUserRequestWithDefaults

func NewModelUpdateUserRequestWithDefaults() *ModelUpdateUserRequest

NewModelUpdateUserRequestWithDefaults instantiates a new ModelUpdateUserRequest 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

GetFirstName

func (o *ModelUpdateUserRequest) GetFirstName() string

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

GetFirstNameOk

func (o *ModelUpdateUserRequest) 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 *ModelUpdateUserRequest) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *ModelUpdateUserRequest) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetIsActive

func (o *ModelUpdateUserRequest) GetIsActive() bool

GetIsActive returns the IsActive field if non-nil, zero value otherwise.

GetIsActiveOk

func (o *ModelUpdateUserRequest) GetIsActiveOk() (*bool, bool)

GetIsActiveOk returns a tuple with the IsActive field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetIsActive

func (o *ModelUpdateUserRequest) SetIsActive(v bool)

SetIsActive sets IsActive field to given value.

HasIsActive

func (o *ModelUpdateUserRequest) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

GetLastName

func (o *ModelUpdateUserRequest) GetLastName() string

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

GetLastNameOk

func (o *ModelUpdateUserRequest) 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 *ModelUpdateUserRequest) SetLastName(v string)

SetLastName sets LastName field to given value.

HasLastName

func (o *ModelUpdateUserRequest) HasLastName() bool

HasLastName returns a boolean if a field has been set.

GetRole

func (o *ModelUpdateUserRequest) GetRole() string

GetRole returns the Role field if non-nil, zero value otherwise.

GetRoleOk

func (o *ModelUpdateUserRequest) GetRoleOk() (*string, 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.

SetRole

func (o *ModelUpdateUserRequest) SetRole(v string)

SetRole sets Role field to given value.

HasRole

func (o *ModelUpdateUserRequest) HasRole() bool

HasRole returns a boolean if a field has been set.

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