Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 3.83 KB

UserRequest.md

File metadata and controls

150 lines (81 loc) · 3.83 KB

UserRequest

Properties

Name Type Description Notes
Email 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

Methods

NewUserRequest

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

NewUserRequestWithDefaults

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

GetEmail

func (o *UserRequest) GetEmail() string

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

GetEmailOk

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.

SetEmail

func (o *UserRequest) SetEmail(v string)

SetEmail sets Email field to given value.

GetFirstName

func (o *UserRequest) GetFirstName() string

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

GetFirstNameOk

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.

SetFirstName

func (o *UserRequest) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *UserRequest) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetIsExternal

func (o *UserRequest) GetIsExternal() bool

GetIsExternal returns the IsExternal field if non-nil, zero value otherwise.

GetIsExternalOk

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.

SetIsExternal

func (o *UserRequest) SetIsExternal(v bool)

SetIsExternal sets IsExternal field to given value.

HasIsExternal

func (o *UserRequest) HasIsExternal() bool

HasIsExternal returns a boolean if a field has been set.

GetLastName

func (o *UserRequest) GetLastName() string

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

GetLastNameOk

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.

SetLastName

func (o *UserRequest) SetLastName(v string)

SetLastName sets LastName field to given value.

HasLastName

func (o *UserRequest) HasLastName() bool

HasLastName returns a boolean if a field has been set.

GetPassword

func (o *UserRequest) GetPassword() string

GetPassword returns the Password field if non-nil, zero value otherwise.

GetPasswordOk

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.

SetPassword

func (o *UserRequest) SetPassword(v string)

SetPassword sets Password field to given value.

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