Name | Type | Description | Notes |
---|---|---|---|
Id | string | ||
AuthenticationType | ApiHttpAuthenticationType | ||
UserName | Pointer to string | [optional] | |
Password | Pointer to string | [optional] | |
PasswordSpecified | bool |
func NewApiAuthenticationInfo(id string, authenticationType ApiHttpAuthenticationType, passwordSpecified bool, ) *ApiAuthenticationInfo
NewApiAuthenticationInfo instantiates a new ApiAuthenticationInfo 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
func NewApiAuthenticationInfoWithDefaults() *ApiAuthenticationInfo
NewApiAuthenticationInfoWithDefaults instantiates a new ApiAuthenticationInfo 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
func (o *ApiAuthenticationInfo) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *ApiAuthenticationInfo) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiAuthenticationInfo) SetId(v string)
SetId sets Id field to given value.
func (o *ApiAuthenticationInfo) GetAuthenticationType() ApiHttpAuthenticationType
GetAuthenticationType returns the AuthenticationType field if non-nil, zero value otherwise.
func (o *ApiAuthenticationInfo) GetAuthenticationTypeOk() (*ApiHttpAuthenticationType, bool)
GetAuthenticationTypeOk returns a tuple with the AuthenticationType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiAuthenticationInfo) SetAuthenticationType(v ApiHttpAuthenticationType)
SetAuthenticationType sets AuthenticationType field to given value.
func (o *ApiAuthenticationInfo) GetUserName() string
GetUserName returns the UserName field if non-nil, zero value otherwise.
func (o *ApiAuthenticationInfo) 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.
func (o *ApiAuthenticationInfo) SetUserName(v string)
SetUserName sets UserName field to given value.
func (o *ApiAuthenticationInfo) HasUserName() bool
HasUserName returns a boolean if a field has been set.
func (o *ApiAuthenticationInfo) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
func (o *ApiAuthenticationInfo) 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.
func (o *ApiAuthenticationInfo) SetPassword(v string)
SetPassword sets Password field to given value.
func (o *ApiAuthenticationInfo) HasPassword() bool
HasPassword returns a boolean if a field has been set.
func (o *ApiAuthenticationInfo) GetPasswordSpecified() bool
GetPasswordSpecified returns the PasswordSpecified field if non-nil, zero value otherwise.
func (o *ApiAuthenticationInfo) GetPasswordSpecifiedOk() (*bool, bool)
GetPasswordSpecifiedOk returns a tuple with the PasswordSpecified field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiAuthenticationInfo) SetPasswordSpecified(v bool)
SetPasswordSpecified sets PasswordSpecified field to given value.