Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.46 KB

ApiUserTokenDTO.md

File metadata and controls

134 lines (73 loc) · 3.46 KB

ApiUserTokenDTO

Properties

Name Type Description Notes
PassCode Pointer to string [optional]
Realm Pointer to string [optional]
UserCode Pointer to string [optional]
Username Pointer to string [optional]

Methods

NewApiUserTokenDTO

func NewApiUserTokenDTO() *ApiUserTokenDTO

NewApiUserTokenDTO instantiates a new ApiUserTokenDTO 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

NewApiUserTokenDTOWithDefaults

func NewApiUserTokenDTOWithDefaults() *ApiUserTokenDTO

NewApiUserTokenDTOWithDefaults instantiates a new ApiUserTokenDTO 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

GetPassCode

func (o *ApiUserTokenDTO) GetPassCode() string

GetPassCode returns the PassCode field if non-nil, zero value otherwise.

GetPassCodeOk

func (o *ApiUserTokenDTO) GetPassCodeOk() (*string, bool)

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

SetPassCode

func (o *ApiUserTokenDTO) SetPassCode(v string)

SetPassCode sets PassCode field to given value.

HasPassCode

func (o *ApiUserTokenDTO) HasPassCode() bool

HasPassCode returns a boolean if a field has been set.

GetRealm

func (o *ApiUserTokenDTO) GetRealm() string

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

GetRealmOk

func (o *ApiUserTokenDTO) 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 *ApiUserTokenDTO) SetRealm(v string)

SetRealm sets Realm field to given value.

HasRealm

func (o *ApiUserTokenDTO) HasRealm() bool

HasRealm returns a boolean if a field has been set.

GetUserCode

func (o *ApiUserTokenDTO) GetUserCode() string

GetUserCode returns the UserCode field if non-nil, zero value otherwise.

GetUserCodeOk

func (o *ApiUserTokenDTO) GetUserCodeOk() (*string, bool)

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

SetUserCode

func (o *ApiUserTokenDTO) SetUserCode(v string)

SetUserCode sets UserCode field to given value.

HasUserCode

func (o *ApiUserTokenDTO) HasUserCode() bool

HasUserCode returns a boolean if a field has been set.

GetUsername

func (o *ApiUserTokenDTO) GetUsername() string

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

GetUsernameOk

func (o *ApiUserTokenDTO) 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 *ApiUserTokenDTO) SetUsername(v string)

SetUsername sets Username field to given value.

HasUsername

func (o *ApiUserTokenDTO) HasUsername() bool

HasUsername returns a boolean if a field has been set.

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