Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.54 KB

File metadata and controls

186 lines (101 loc) · 4.54 KB

ApiUserDTO

Properties

Name Type Description Notes
Email Pointer to string [optional]
FirstName Pointer to string [optional]
LastName Pointer to string [optional]
Password Pointer to string [optional]
Realm Pointer to string [optional]
Username Pointer to string [optional]

Methods

NewApiUserDTO

func NewApiUserDTO() *ApiUserDTO

NewApiUserDTO instantiates a new ApiUserDTO 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

NewApiUserDTOWithDefaults

func NewApiUserDTOWithDefaults() *ApiUserDTO

NewApiUserDTOWithDefaults instantiates a new ApiUserDTO 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 *ApiUserDTO) GetEmail() string

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

GetEmailOk

func (o *ApiUserDTO) 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 *ApiUserDTO) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *ApiUserDTO) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetFirstName

func (o *ApiUserDTO) GetFirstName() string

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

GetFirstNameOk

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

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *ApiUserDTO) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetLastName

func (o *ApiUserDTO) GetLastName() string

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

GetLastNameOk

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

SetLastName sets LastName field to given value.

HasLastName

func (o *ApiUserDTO) HasLastName() bool

HasLastName returns a boolean if a field has been set.

GetPassword

func (o *ApiUserDTO) GetPassword() string

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

GetPasswordOk

func (o *ApiUserDTO) 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 *ApiUserDTO) SetPassword(v string)

SetPassword sets Password field to given value.

HasPassword

func (o *ApiUserDTO) HasPassword() bool

HasPassword returns a boolean if a field has been set.

GetRealm

func (o *ApiUserDTO) GetRealm() string

GetRealm returns the Realm field if non-nil, zero value otherwise.

GetRealmOk

func (o *ApiUserDTO) GetRealmOk() (*string, bool)

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

SetRealm

func (o *ApiUserDTO) SetRealm(v string)

SetRealm sets Realm field to given value.

HasRealm

func (o *ApiUserDTO) HasRealm() bool

HasRealm returns a boolean if a field has been set.

GetUsername

func (o *ApiUserDTO) GetUsername() string

GetUsername returns the Username field if non-nil, zero value otherwise.

GetUsernameOk

func (o *ApiUserDTO) GetUsernameOk() (*string, bool)

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

SetUsername

func (o *ApiUserDTO) SetUsername(v string)

SetUsername sets Username field to given value.

HasUsername

func (o *ApiUserDTO) HasUsername() bool

HasUsername returns a boolean if a field has been set.

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